﻿/* =======================================================================
   THEME.CSS - CONSOLIDATED STYLESHEET
   ======================================================================= */

/* --- 1. RESET & VARIABLES --- */
:root {
    /* PALETTE */
    --gunmetal: #393d3fff; /* Main Text */
    --white: #fdfdffff; /* Main Background */
    --silver: #c6c5b9ff; /* Borders / Accents */
    --pacific-cyan: #62929eff; /* Primary Buttons / Highlights */
    --blue-slate: #546a7bff; /* Subtext / Secondary Buttons */
    /* NEW / MERGED PALETTE VARIABLES (from Snaips context if needed) */
    --deep-ink: #050818;
    --soft-cloud: #F5F7FB;
    --panel-white: #FFFFFF;
    --slate-line: #D1D7E5;
    --quantum-teal: #00D0B5;
    --deep-teal: #00A08A;
    /* SEMANTIC MAPPINGS */
    --color-bg: var(--white);
    --color-bg-alt: #f4f4f6; /* Contrast Background */
    --color-text-main: var(--gunmetal);
    --color-text-sub: var(--blue-slate);
    --color-primary: var(--pacific-cyan);
    --color-primary-hover: #537d8a;
    /* TYPOGRAPHY */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-head: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-tech: 'IBM Plex Mono', monospace;
    /* LAYOUT & METRICS */
    --spacing-container: 1100px;
    --radius-default: 6px;
    --header-height: 60px; /* Estimated based on usage */
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Ensure body can flex for sticky footer */
}

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

h1:focus {
    outline: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-head, inherit); /* Prefer Manrope if available */
}

p {
    color: var(--color-text-sub);
    margin-bottom: 1rem;
}

/* --- 3. UTILITIES & LAYOUT HELPERS --- */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.border-top {
    border-top: 1px solid rgba(198, 197, 185, 0.3);
}

/* --- 4. BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-default);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

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

    .btn-primary:hover {
        background-color: var(--color-primary-hover);
        transform: translateY(-1px);
    }

.btn-ghost {
    background-color: transparent;
    color: var(--color-text-main);
}

    .btn-ghost:hover {
        color: var(--color-primary);
        background-color: rgba(98, 146, 158, 0.1);
    }

/* --- 5. HEADER & NAVIGATION --- */
.site-header {
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(253, 253, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(198, 197, 185, 0.3);
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.nav-item {
    color: var(--color-text-sub);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

    .nav-item:hover {
        color: var(--color-primary);
    }

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none; /* Default hidden */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gunmetal);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-nav-overlay {
    position: fixed;
    top: 82px; /* Matches header height approx */
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--silver);
    padding: 1rem 0 2rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

    .mobile-nav-overlay.open {
        transform: translateY(0);
    }

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gunmetal);
    text-decoration: none;
}

    .mobile-nav-link:hover {
        color: var(--pacific-cyan);
    }

/* --- 6. SECTIONS & HERO --- */
section {
    padding: 4rem 0;
}

.hero-section {
    text-align: center;
    padding: 8rem 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .subline {
        font-size: 1.25rem;
        margin: 0 auto 2.5rem auto;
        max-width: 700px;
    }

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- 7. CONTENT GRIDS & CARDS --- */
/* Split Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.section-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Features List */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

    .feature-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--color-text-sub);
        font-weight: 500;
    }

        .feature-list li::before {
            content: "\2022";
            color: var(--color-primary);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2em;
            line-height: 1;
        }

.product-bullets li::before {
    content: "\2713"; /* Checkmark */
    position: absolute;
    left: 0;
    color: var(--pacific-cyan);
    font-weight: 800;
}

/* Visual Box */
.visual-box {
    background-color: #fff;
    height: 400px;
    border-radius: 12px;
    border: 1px solid var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


/* Grid Layouts */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

    .section-head h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 2.5rem;
}

.simple-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--silver);
    margin-bottom: 0.5rem;
    display: block;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* --- 8. AUTH & FORMS --- */
.auth-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--color-bg-alt);
}

.auth-card {
    background-color: var(--white);
    padding: 2.5rem;
    width: 95%;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid var(--silver);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

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

    .auth-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

.auth-section-wide {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    .auth-section-wide .auth-card {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gunmetal);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--gunmetal);
    background-color: var(--white);
    margin-bottom: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-input:focus {
        outline: none;
        border-color: var(--pacific-cyan);
        box-shadow: 0 0 0 3px rgba(98, 146, 158, 0.1);
    }

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--blue-slate);
}

.auth-link {
    color: var(--pacific-cyan);
    font-weight: 600;
    cursor: pointer;
}

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

/* Language Selector */
.lang-selector-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.lang-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue-slate);
    pointer-events: none;
    z-index: 1;
}

.lang-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 1rem 0.5rem 2.25rem;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    border-radius: var(--radius-default);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .lang-select:hover {
        color: var(--pacific-cyan);
        background-color: rgba(98, 146, 158, 0.05);
    }

    .lang-select:focus {
        outline: none;
        border-color: var(--pacific-cyan);
    }

.lang-selector-wrapper::after {
    content: "▼";
    font-size: 0.6em;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver);
    pointer-events: none;
}

/* Floating Input Helpers */
.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color); /* Note: ensure this var exists if using BS */
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* --- 9. SETTINGS TAB RAIL --- */
.settings-tab-rail {
    position: relative;
    margin-bottom: 2rem;
}

.rail-divider {
    height: 1px;
    background-color: var(--slate-line);
    width: 100%;
    margin-top: -1px;
    z-index: 1;
}

.tab-link {
    display: flex;
    align-items: center;
    padding: 12px 4px;
    margin-right: 24px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-text-sub); /* Was text-secondary */
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    z-index: 2;
}

    .tab-link:hover {
        color: var(--color-text-main); /* Was deep-ink */
    }

    .tab-link.active {
        color: var(--color-text-main);
        border-bottom-color: var(--color-primary); /* Was quantum-teal */
    }

    .tab-link i {
        font-size: 16px;
        transition: color 0.2s;
    }

    .tab-link.active i {
        color: var(--deep-teal, #00A08A); /* Fallback if var not defined in root */
    }

.preview-body {
    position: relative;
}

.preview-busy-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


/* --- 10. ERROR BOUNDARY --- */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

/* --- 11. FOOTER --- */
.site-footer {
    padding: 1rem 0;
    text-align: center;
    color: var(--silver);
    font-size: 0.875rem;
}

/* For screens between 992px and 1200px (Medium/Large Tablets) */
@media (min-width: 980px) and (max-width: 1250px) {
    /* Reduce the gap between links */
    .nav-links {
        gap: 1.3rem; /* Was 2rem */
    }

    /* Slightly smaller text */
    .nav-item {
        font-size: 0.90rem;
    }

    /* Smaller logo text */
    .brand-logo {
        font-size: 1.25rem;
    }

    /* Smaller buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* --- 12. RESPONSIVE UTILITIES --- */
@media (max-width: 980px) {
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw + 1rem, 2.5rem);
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .split-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-box {
        height: 250px;
        order: -1;
    }

    .nav-links, .header-actions {
        display: none;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* =======================================================================
   13. BUTTON TOGGLES (btn-peaceful) - High Contrast Fix
   ======================================================================= */

/* Base Style (Unselected) */
.btn-peaceful {
    background-color: var(--white);
    border: 1px solid var(--silver);
    color: var(--color-text-sub);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease-in-out;
}

    /* Hover State */
    .btn-peaceful:hover {
        background-color: var(--color-bg-alt);
        border-color: var(--color-text-sub);
        color: var(--color-text-main);
    }

/* SELECTED STATE (The Fix) */
.btn-check:checked + .btn-peaceful {
    /* 1. Strong Teal Border */
    border-color: var(--quantum-teal) !important;
    border-width: 1px;
    /* 2. Visible Teal Background Tint */
    background-color: rgba(0, 208, 181, 0.15) !important;
    /* 3. Dark Text for Readability */
    color: var(--deep-ink) !important;
    font-weight: 700;
    /* 4. Glow Shadow */
    box-shadow: 0 0 0 1px var(--quantum-teal), 0 2px 4px rgba(0, 208, 181, 0.2);
}

/* =======================================================================
   14. PEACEFUL CARDS (selection-card-peaceful) - High Contrast Fix
   ======================================================================= */

/* Base Card Style */
.selection-card-peaceful {
    display: block;
    position: relative;
    border: 1px solid var(--silver);
    border-radius: 6px;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    /* Hover State */
    .selection-card-peaceful:hover {
        background-color: var(--soft-cloud);
        border-color: var(--color-text-sub);
        transform: translateY(-1px);
    }

    /* SELECTED STATE (Using :has to detect checked child) */
    .selection-card-peaceful:has(.form-check-input:checked) {
        /* 1. Strong Teal Border */
        border-color: var(--quantum-teal) !important;
        border-width: 1px; /* Maintain width to prevent jump, or use 2px with margin -1px */
        /* 2. Visible Teal Background Tint */
        background-color: rgba(0, 208, 181, 0.15) !important;
        /* 3. Glow Shadow */
        box-shadow: 0 0 0 1px var(--quantum-teal), 0 4px 12px rgba(0, 208, 181, 0.2);
    }

        /* Make text inside darker when selected */
        .selection-card-peaceful:has(.form-check-input:checked) * {
            color: var(--deep-ink) !important;
        }

    /* Optional: Hide the default radio circle if you want a cleaner look */
    .selection-card-peaceful .form-check-input {
        accent-color: var(--quantum-teal);
    }

.campaign-goal-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    max-height: calc(1.25em * 2);
    word-break: break-word;
}

/* =======================================================================
   IDEA PACKS (/ideas) - CARDS & DETAIL FRAMES
   ======================================================================= */

.text-sub {
    color: var(--color-text-sub);
}

.text-primary-theme {
    color: var(--color-primary);
}

.font-tech {
    font-family: var(--font-tech);
}

/* --- Buttons --- */
.btn-theme-primary {
    background-color: var(--color-primary);
    color: var(--white);
    border-radius: var(--radius-default);
    font-weight: 600;
    border: none;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s;
}

    .btn-theme-primary:hover {
        background-color: var(--color-primary-hover);
        color: var(--white);
        transform: translateY(-1px);
    }

.btn-theme-text {
    color: var(--color-text-sub);
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1rem;
    transition: color 0.2s;
}

    .btn-theme-text:hover {
        color: var(--color-primary);
        text-decoration: none;
    }

.btn-theme-ghost {
    background-color: transparent;
    color: var(--color-text-sub);
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
}

    .btn-theme-ghost:hover {
        border-color: var(--color-text-main);
        color: var(--color-text-main);
        background-color: var(--soft-cloud);
    }

/* --- Pack card (listing) --- */
.pack-card {
    display: block;
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease-in-out;
    position: relative;
}

    .pack-card:hover {
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        background-color: var(--soft-cloud);
        text-decoration: none;
    }

.pack-headline {
    color: var(--color-text-main);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.pack-subline {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 3px solid rgba(198, 197, 185, 0.4);
}

/* --- Badges --- */
.badge-tech {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    background-color: var(--white);
    color: var(--blue-slate);
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    padding: 4px 8px;
    text-transform: uppercase;
}

.badge-channel {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #f0f2f5;
    color: var(--gunmetal);
    border: 1px solid transparent;
    border-radius: 50rem;
    padding: 4px 10px;
}

.badge-ideas {
    background-color: rgba(98, 146, 158, 0.1);
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-head);
    border-radius: var(--radius-default);
    padding: 6px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.badge-ideas-prominent {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-head);
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pillar-badge {
    background: white;
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    padding: 4px 10px;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.pillar-badge.has-tooltip {
    cursor: help;
}

.pillar-badge.has-tooltip:hover {
    border-color: var(--color-primary);
    background: var(--soft-cloud);
}

.meta-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--silver);
    margin: 0 10px;
    vertical-align: middle;
}

/* --- Pack detail frames (/ideas/{id}) --- */
.content-frame {
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    padding: 1.5rem;
    background: var(--white);
    height: 100%;
}

.frame-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.idea-card {
    border: 1px solid var(--silver);
    border-radius: var(--radius-default);
    transition: all 0.2s ease;
}

    .idea-card:hover {
        border-color: var(--color-primary);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transform: translateY(-2px);
    }

.channel-item {
    border-bottom: 1px solid rgba(198, 197, 185, 0.3);
    padding: 0.75rem 0;
}

    .channel-item:last-child {
        border-bottom: none;
    }


/* =======================================================================
   15. PRICING PAGE SPECIFICS
   ======================================================================= */

/* Wrapper for standard cards to handle specific border/spacing logic */
.pricing-card-wrapper {
    cursor: default;
    padding: 1px !important; /* Preserves original inline override */
}

/* The highlighted 'Growth' card */
.pricing-card-featured {
    cursor: default;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Sticky Header logic for long columns */
.pricing-header-sticky {
    position: sticky;
    top: 75px;
    background-color: var(--white);
    z-index: 10;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-color: var(--slate-line) !important;
}

/* Typography for the price number */
.price-value {
    font-family: var(--font-head);
    color: var(--gunmetal);
}

/* Utility for the Deep Teal label color */
.text-deep-teal {
    color: var(--deep-teal);
}

/* ─────────────────────────────────────────────────────────
   Sample Idea Cards
   ───────────────────────────────────────────────────────── */
.idea-card {
    background: var(--white);
    border: 1px solid var(--slate-line);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.idea-channel {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.idea-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gunmetal);
    margin: 0;
}

.idea-card p {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sample-idea-card {
    background: var(--white);
    border: 1px solid var(--slate-line);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sample-idea-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gunmetal);
    margin: 0;
}

.sample-idea-card p {
    font-size: 0.9rem;
    color: var(--color-text-sub);
    line-height: 1.6;
}

.sample-idea-card .idea-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-line);
    font-size: 0.8rem;
    color: var(--silver);
}

.idea-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-line);
    font-size: 0.8rem;
    color: var(--silver);
}

.idea-footer i {
    color: var(--color-primary);
    margin-right: 0.25rem;
}
