/* ===== AI Gym Coach Theme ===== */
:root {
    --gc-primary: #6366f1;
    --gc-primary-dark: #4f46e5;
    --gc-accent: #10b981;
    --gc-accent-dark: #059669;
    --gc-dark: #1e293b;
    --gc-darker: #0f172a;
    --gc-light: #f8fafc;
    --gc-gray: #64748b;
    --gc-border: #e2e8f0;
    --gc-card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --gc-card-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.06);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--gc-light);
    color: var(--gc-dark);
    min-height: 100vh;
}

h1:focus { outline: none; }

/* Navbar */
.gc-navbar {
    background: linear-gradient(135deg, var(--gc-darker), var(--gc-dark));
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.gc-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}
.gc-navbar .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    transition: color 0.2s;
}
.gc-navbar .nav-link:hover,
.gc-navbar .nav-link.active {
    color: #fff !important;
}

/* Page container */
.gc-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ===== Hero Landing Section ===== */
.gc-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.gc-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}
.gc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.20) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.gc-hero-content {
    padding: 2rem 1.5rem 2.5rem;
    width: 100%;
    text-align: center;
}
.gc-hero-btn {
    font-size: 1.05rem;
    padding: 0.7rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
@media (max-width: 576px) {
    .gc-hero-img {
        max-height: 400px;
    }
    .gc-hero-content {
        padding: 1.2rem 1rem 1.5rem;
    }
    .gc-hero-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.3rem;
    }
}

/* Cards */
.gc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--gc-card-shadow);
    border: 1px solid var(--gc-border);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}
.gc-card:hover {
    box-shadow: var(--gc-card-shadow-lg);
}

/* Buttons */
.btn-gc-primary {
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gc-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
    color: #fff;
}
.btn-gc-accent {
    background: linear-gradient(135deg, var(--gc-accent), var(--gc-accent-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gc-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
    color: #fff;
}

/* Chat UI */
.gc-chat-container {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gc-chat-bubble {
    max-width: 85%;
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    line-height: 1.5;
    font-size: 0.95rem;
    word-break: break-word;
}
.gc-chat-bubble.user {
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}
.gc-chat-bubble.assistant {
    background: #fff;
    border: 1px solid var(--gc-border);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    color: var(--gc-dark);
}
.gc-chat-bubble.assistant h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 0.8rem;
    margin-bottom: 0.3rem;
}
.gc-chat-bubble.assistant h2:first-child {
    margin-top: 0;
}
.gc-chat-bubble.assistant a {
    color: var(--gc-primary);
    text-decoration: underline;
}
.gc-chat-bubble.assistant ul,
.gc-chat-bubble.assistant ol {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Stats cards */
.gc-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--gc-border);
    box-shadow: var(--gc-card-shadow);
}
.gc-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gc-primary);
}
.gc-stat-card .stat-label {
    color: var(--gc-gray);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile form */
.gc-form-group {
    margin-bottom: 1rem;
}
.gc-form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gc-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
    display: block;
}
.gc-form-group .form-control,
.gc-form-group .form-select {
    border-radius: 10px;
    border: 1.5px solid var(--gc-border);
    padding: 0.6rem 0.9rem;
    transition: border-color 0.2s;
}
.gc-form-group .form-control:focus,
.gc-form-group .form-select:focus {
    border-color: var(--gc-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* Badge */
.gc-badge-pro {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gc-badge-free {
    background: var(--gc-border);
    color: var(--gc-gray);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gc-badge-admin {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Upgrade CTA */
.gc-upgrade-cta {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}
.gc-upgrade-cta h5 {
    color: #92400e;
    font-weight: 800;
}
.gc-upgrade-cta p {
    color: #78350f;
}

/* Loading spinner */
.gc-spinner {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: gc-spin 0.7s linear infinite;
}
@keyframes gc-spin {
    to { transform: rotate(360deg); }
}

/* Admin table */
.gc-admin-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gc-gray);
    border-bottom: 2px solid var(--gc-border);
}

/* Chart container */
.gc-chart-container {
    position: relative;
    height: 300px;
}

/* Validation */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
.invalid {
    outline: 1px solid #e50000;
}
.validation-message {
    color: #e50000;
    font-size: 0.85rem;
}

/* Error UI */
.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."
}

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

#blazor-error-ui {
    background: #b32121;
    color: #fff;
    padding: 0.6rem 1.2rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

/* ===== Coach Page ===== */

/* Coach header */
.gc-coach-header {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gc-border);
}

/* Onboarding card (incomplete profile) */
.gc-onboarding-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1.5px solid #93c5fd;
    border-radius: 16px;
    padding: 1.25rem;
}
.gc-onboarding-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.gc-progress-bar {
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
    overflow: hidden;
}
.gc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gc-primary), var(--gc-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Profile summary card */
.gc-profile-summary {
    background: #fff;
    border: 1px solid var(--gc-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--gc-card-shadow);
    transition: box-shadow 0.2s;
}
.gc-profile-summary:hover {
    box-shadow: var(--gc-card-shadow-lg);
}
.gc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.gc-goal-pill {
    background: rgba(16,185,129,0.12);
    color: var(--gc-accent-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.gc-level-pill {
    background: rgba(99,102,241,0.1);
    color: var(--gc-primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.gc-profile-stats-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--gc-gray);
}
.gc-profile-stats-row i {
    font-size: 0.78rem;
}
.gc-profile-detail {
    border-top: 1px solid var(--gc-border);
}

/* Large coach avatar for empty state */
.gc-coach-avatar-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Muscle group chips */
.gc-chip {
    background: #f1f5f9;
    border: 1.5px solid var(--gc-border);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gc-dark);
    cursor: pointer;
    transition: all 0.15s;
}
.gc-chip:hover {
    border-color: var(--gc-primary);
    color: var(--gc-primary);
    background: rgba(99,102,241,0.06);
}
.gc-chip.active {
    background: var(--gc-primary);
    color: #fff;
    border-color: var(--gc-primary);
}
.gc-chip:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Action chips */
.gc-action-chip {
    background: #fff;
    border: 1.5px solid var(--gc-border);
    border-radius: 10px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gc-dark);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.gc-action-chip:hover {
    border-color: var(--gc-primary);
    color: var(--gc-primary);
    background: rgba(99,102,241,0.04);
    transform: translateY(-1px);
}
.gc-action-chip:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Coach response section headers */
.gc-section-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gc-dark);
    padding: 0.5rem 0.7rem;
    margin: 0.8rem -0.3rem 0.4rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--gc-primary);
}
.gc-section-header:first-child {
    margin-top: 0;
}

/* YouTube links in coach responses */
.gc-yt-link {
    color: var(--gc-primary) !important;
    text-decoration: none !important;
    font-weight: 500;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    transition: background 0.15s;
}
.gc-yt-link:hover {
    background: rgba(99,102,241,0.08);
    text-decoration: underline !important;
}

/* Coach list styling */
.gc-coach-list {
    padding-left: 1.1rem;
    margin: 0.3rem 0;
}
.gc-coach-list li {
    margin-bottom: 0.2rem;
}

/* Typing dots animation for the coach "thinking" state */
.gc-typing-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.gc-typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gc-primary);
    display: inline-block;
    animation: gc-typing-bounce 1.2s infinite ease-in-out;
}
.gc-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.gc-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes gc-typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Floating "Jump to latest" button shown when the user has scrolled up in the chat */
.gc-jump-latest {
    position: absolute;
    bottom: 14px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gc-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99,102,241,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
    z-index: 5;
}
.gc-jump-latest:hover {
    transform: translateY(-2px);
    background: var(--gc-primary-dark);
}

/* Profile image avatar variants (override gc-avatar for <img>) */
.gc-avatar-img {
    width: 46px !important;
    height: 46px !important;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.gc-avatar-img-sm {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px;
    object-fit: cover;
}
.gc-avatar-img-lg {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px;
    max-height: 96px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--gc-card-shadow);
    display: block;
}

/* Avatar upload area on profile page */
.gc-avatar-upload {
    position: relative;
    display: inline-block;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    cursor: pointer;
}
.gc-avatar-upload .gc-avatar-initial-lg {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gc-primary), var(--gc-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
}
.gc-avatar-upload .gc-avatar-overlay {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--gc-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: var(--gc-card-shadow);
}



/* placeholder will be replaced */
/* ===== Gym Identity Backdrop =====
   Fixed full-page layer behind all content.
   - Subtle dark/primary diagonal gradient (matches navbar palette).
   - Two large faint Bootstrap Icons in the side margins on wide screens only.
   - On screens <1280px, the side glyphs are hidden so they never overlap content.
   - Center cards already have white background + shadow, so readability stays high.
*/
.gc-page {
    position: relative;
    z-index: 1; /* sits above the backdrop */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at top left, rgba(99,102,241,0.10), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(16,185,129,0.08), transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    pointer-events: none;
}

/* Side glyphs — only visible on wide screens, far outside the 1100px content column */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        /* left side: dumbbell-like glyph using Bootstrap Icons font character */
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'><path d='M2 6h1v4H2zM4 5h1v6H4zM6 7h4v2H6zM11 5h1v6h-1zM13 6h1v4h-1z'/></svg>"),
        /* right side: lightning bolt */
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'><path d='M5.52.359A.5.5 0 0 1 6 0h4a.5.5 0 0 1 .474.658L8.694 6H12.5a.5.5 0 0 1 .395.807l-7 9a.5.5 0 0 1-.873-.454L6.823 9.5H3.5a.5.5 0 0 1-.48-.641z'/></svg>");
    background-repeat: no-repeat, no-repeat;
    background-position: 4% 30%, 96% 70%;
    background-size: 220px 220px, 220px 220px;
    opacity: 0.07;
}

@media (max-width: 1280px) {
    /* On laptops/tablets/phones the side area is too narrow — hide the glyphs entirely. */
    body::after { display: none; }
}

/* Slight transparency-aware lift for the main cards so they sit cleanly on the backdrop. */
.gc-card,
.gc-coach-header,
.gc-profile-summary,
.gc-onboarding-card,
.gc-stat-card,
.gc-upgrade-cta {
    backdrop-filter: saturate(1.05);
}

/* Admin filter tab pills */
.gc-filter-tabs .nav-link {
    border-radius: 8px;
    color: var(--gc-gray);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: transparent;
    border: 1px solid transparent;
}
.gc-filter-tabs .nav-link:hover {
    background: rgba(99,102,241,0.06);
    color: var(--gc-primary);
}
.gc-filter-tabs .nav-link.active {
    background: var(--gc-primary);
    color: #fff;
}
.gc-filter-tabs .nav-link.active .badge {
    background: rgba(255,255,255,0.25) !important;
}


/* Trial pill on the home page hero */
.gc-trial-pill {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(16,185,129,0.10));
    border: 1px solid rgba(99,102,241,0.25);
    color: var(--gc-primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
}
