/* ==========================================================================
   Sewa First Innovation Challenge
   Ultra-Modern Design System & Premium Aesthetics
   Palette : Deep Forest Emerald, Radiant Gold, Electric Mint, Glass & Slate
   Type    : Poppins (Display/Headings) + Inter (Body/UI)
   ========================================================================== */

:root {
    /* Brand Primary & Secondary Colors */
    --teal-950: #220901;
    --teal-900: #380F02;
    --teal-800: #7C2D12;
    --teal-700: #C2410C;
    --teal: #EA580C;
    --teal-light: #F97316;
    --teal-tint: #FFF7ED;
    --teal-glow: rgba(194, 65, 12, 0.35);

    /* Accents */
    --gold: #F5B738;
    --gold-light: #FDE8B5;
    --gold-deep: #C98B1B;
    --gold-glow: rgba(245, 183, 56, 0.35);

    --mint: #00F5A0;
    --mint-soft: #D1FAE5;
    --mint-glow: rgba(0, 245, 160, 0.35);

    --indigo: #6366F1;
    --indigo-light: #EEF2FF;
    --rose: #F43F5E;
    --rose-light: #FFE4E6;
    --purple: #8B5CF6;
    --purple-light: #F3E8FF;
    --amber: #F59E0B;
    --amber-light: #FEF3C7;
    --cyan: #06B6D4;
    --cyan-light: #ECFEFF;

    /* Neutrals & Surfaces */
    --bg-page: #F8FAF9;
    --card: #FFFFFF;
    --card-hover: #FFFFFF;
    --line: #E2E8F0;
    --line-subtle: #EDF2F7;
    --ink: #0F172A;
    --ink-soft: #475569;
    --ink-muted: #64748B;
    --ink-faint: #94A3B8;

    /* Status */
    --success: #10B981;
    --success-bg: #ECFDF5;
    --danger: #EF4444;
    --danger-bg: #FEF2F2;

    /* Elevation & Geometry */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;

    --shadow-subtle: 0 2px 4px rgba(56, 15, 2, 0.04);
    --shadow-card: 0 4px 20px -2px rgba(56, 15, 2, 0.07), 0 2px 6px -1px rgba(56, 15, 2, 0.04);
    --shadow-elevated: 0 16px 36px -4px rgba(56, 15, 2, 0.12), 0 6px 14px -2px rgba(56, 15, 2, 0.06);
    --shadow-glow: 0 0 35px -5px rgba(245, 183, 56, 0.25);
    --shadow-teal-glow: 0 0 40px -5px rgba(0, 245, 160, 0.22);
}

/* ---------- Base & Reset ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--teal-900);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

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

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

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top Notification Bar ---------- */
.top-notice-bar {
    background: linear-gradient(90deg, #041814 0%, #08342C 50%, #041814 100%);
    color: #E2E8F0;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 50;
}

.notice-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.notice-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.notice-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 183, 56, 0.2);
    border: 1px solid rgba(245, 183, 56, 0.4);
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold);
    animation: pulseDot 1.8s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.notice-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

.notice-links a {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.notice-links a:hover {
    color: var(--gold);
}

/* ---------- Header & Navigation ---------- */
.site-header {
    background: linear-gradient(135deg, #9A3412 0%, #C2410C 50%, #EA580C 100%) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    position: sticky;
    top: 0;
    z-index: 40;
    transition: all 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(56, 15, 2, 0.22);
    background: #9A3412 !important;
}

.site-header .brand-text strong {
    color: #FFFFFF;
}

.site-header .brand-text small {
    color: #FFEDD5 !important;
}

.site-header .header-nav a:not(.btn) {
    color: #FFFFFF !important;
}

.site-header .header-nav a:not(.btn):hover,
.site-header .header-nav a:not(.btn).active {
    color: #F5B738 !important;
}

.site-header .menu-toggle svg {
    stroke: #FFFFFF;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: none;
    display: grid;
    place-items: center;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    padding: 2px;
}

.brand-mark img,
.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-mark svg {
    width: 26px;
    height: 26px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-text strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--teal-900);
    letter-spacing: -0.01em;
}

.brand-text small {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 500;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 500;
}

.header-nav a:not(.btn) {
    color: #FFFFFF !important;
    padding: 6px 4px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.header-nav a:not(.btn):hover,
.header-nav a:not(.btn).active {
    color: #F5B738 !important;
}

.header-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #F5B738;
    transition: width 0.2s ease;
    border-radius: 2px;
}

.header-nav a:not(.btn):hover::after,
.header-nav a:not(.btn).active::after {
    width: 100%;
}

.header-nav .btn-nav-cta,
.header-nav .btn-nav-cta span,
.btn-nav-cta,
.btn-nav-cta span {
    background: #F5B738 !important;
    color: #380F02 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 8px 20px !important;
    border-radius: 9999px !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(245, 183, 56, 0.28) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.header-nav .btn-nav-cta:hover,
.header-nav .btn-nav-cta:hover span,
.header-nav .btn-nav-cta.active,
.header-nav .btn-nav-cta.active span,
.btn-nav-cta:hover,
.btn-nav-cta:hover span,
.btn-nav-cta.active,
.btn-nav-cta.active span {
    background: #EAA722 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(245, 183, 56, 0.45) !important;
    color: #380F02 !important;
}

.header-nav .btn-nav-cta .btn-arrow,
.btn-nav-cta .btn-arrow {
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}

.header-nav .btn-nav-cta:hover .btn-arrow,
.btn-nav-cta:hover .btn-arrow {
    transform: translateX(3px) !important;
}

.notice-sep {
    opacity: 0.35;
    font-size: 12px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--teal-900);
}

/* ---------- Buttons & Actions ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: var(--teal-950);
    box-shadow: 0 4px 14px rgba(245, 183, 56, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F7C355 0%, #EAA722 100%);
    box-shadow: 0 6px 20px rgba(245, 183, 56, 0.5);
    transform: translateY(-2px);
    color: #220901;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 1.5px solid var(--line);
    color: var(--teal-900);
}

.btn-outline-dark:hover {
    border-color: var(--teal-700);
    background: var(--teal-tint);
    color: var(--teal-900);
}

.btn-mint {
    background: linear-gradient(135deg, #00F5A0 0%, #00D287 100%);
    color: #220901;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 245, 160, 0.35);
}

.btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 245, 160, 0.45);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink-soft);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal-700);
    background: #FFFFFF;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13.5px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
}

/* ---------- Hero Banner Section ---------- */
.hero-banner-section {
    width: 100%;
    background: #F4FAF7;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2ECE7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

/* ---------- Hero Section ---------- */
.hero {
    background: #F4FAF7;
    background-image: 
        radial-gradient(circle at 75% 15%, rgba(185, 243, 222, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(254, 240, 199, 0.25) 0%, transparent 40%),
        linear-gradient(180deg, #F8FCFA 0%, #EDF7F3 100%);
    color: #0F172A;
    padding: 58px 0 62px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2ECE7;
}

/* Ambient glow orbs in hero background */
.hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -100px;
    right: 5%;
    background: radial-gradient(circle, rgba(0, 245, 160, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(245, 183, 56, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F3ED;
    border: 1px solid #CEE7DC;
    padding: 3px 12px 3px 4px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: #1E3A34;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.hero-badge-tag {
    background: #F5B738;
    color: #18181B;
    font-weight: 800;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.hero-title,
.hero h1 {
    color: #08261F;
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.02em;
    max-width: 540px;
    margin-bottom: 10px;
}

.hero-impact-text,
.hero-gradient-text {
    color: #00A86B;
    font-weight: 800;
    display: inline-block;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.hero p.lede {
    color: #4B5563;
    font-size: 13.5px;
    line-height: 1.48;
    max-width: 480px;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-hero-submit {
    background: #F5B738;
    color: #18181B;
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: none;
    box-shadow: 0 3px 12px rgba(245, 183, 56, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-submit:hover {
    background: #EDB031;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(245, 183, 56, 0.4);
    color: #18181B;
}

.btn-hero-track {
    background: #FFFFFF;
    color: #1F2937;
    font-weight: 600;
    font-size: 13.5px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid #D1D5DB;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-track:hover {
    border-color: #C2410C;
    color: #C2410C;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    background: #FFFFFF;
}

/* ---------- Hero Right: Live State Innovation Pulse Dashboard ---------- */
.hero-dashboard-card {
    background: #07211B;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 16px 36px rgba(7, 33, 27, 0.24);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-title-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(0, 245, 160, 0.12);
    border: 1px solid rgba(0, 245, 160, 0.25);
    color: #00F5A0;
    display: grid;
    place-items: center;
}

.dash-title-icon svg {
    width: 14px;
    height: 14px;
}

.dash-title strong {
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.dash-title small {
    color: #8CB6AA;
    font-size: 10.5px;
    display: block;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    background: rgba(0, 245, 160, 0.12);
    border: 1px solid rgba(0, 245, 160, 0.3);
    color: #00F5A0;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.live-pulse-emerald {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00F5A0;
    box-shadow: 0 0 5px #00F5A0;
    animation: pulseDot 1.6s infinite;
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
}

.dash-metric-box {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    padding: 10px 14px;
    transition: all 0.2s ease;
}

.dash-metric-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 245, 160, 0.25);
}

.metric-label {
    display: block;
    color: #8CB6AA;
    font-size: 10.5px;
    font-weight: 500;
    margin-bottom: 2px;
}

.metric-val {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
}

.metric-val.text-gold {
    color: #F5B738;
}

.metric-sub {
    font-size: 10px;
    color: #00F5A0;
    margin-top: 2px;
    display: block;
    font-weight: 500;
}

.metric-sub.text-amber {
    color: #F5B738;
}

.metric-sub.text-muted {
    color: #8CB6AA;
}

.metric-sub.text-mint {
    color: #00F5A0;
}

.dash-ticker-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.live-feed-badge {
    color: #00F5A0;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.mini-submission-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    padding: 6px 9px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 2.5px solid #00F5A0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(0, 245, 160, 0.16);
    color: #00F5A0;
}

.mini-time {
    font-size: 9.5px;
    color: #64748B;
}

.mini-card-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
}

.mini-card-meta {
    font-size: 10px;
    color: #8CB6AA;
}

/* ---------- Statewide Impact Marquee Strip ---------- */
.impact-strip {
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-right: 1px solid var(--line-subtle);
}

.impact-item:last-child {
    border-right: none;
}

.impact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-tint);
    color: var(--teal);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.impact-num {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-900);
    line-height: 1.15;
}

.impact-desc {
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* ---------- General Section Styling ---------- */
section.block {
    padding: 90px 0;
    position: relative;
}

section.block.alt-bg {
    background: #FFFFFF;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head {
    max-width: 680px;
    margin-bottom: 48px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--teal);
    margin-bottom: 10px;
    background: var(--teal-tint);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.section-head h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--teal-900);
    line-height: 1.25;
}

.section-head p {
    margin-top: 14px;
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ---------- Creative Category Matrix ---------- */
.category-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.filter-pill {
    background: #FFFFFF;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--teal-700);
    color: var(--teal-900);
    background: var(--teal-tint);
}

.filter-pill.active {
    background: var(--teal-900);
    color: #FFFFFF;
    border-color: var(--teal-900);
    box-shadow: 0 4px 12px rgba(56, 15, 2, 0.2);
}

.creative-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.creative-cat-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.creative-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient, linear-gradient(90deg, var(--teal), var(--gold)));
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.creative-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(194, 65, 12, 0.25);
}

.cat-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cat-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: var(--cat-bg, var(--teal-tint));
    color: var(--cat-color, var(--teal));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease;
}

.creative-cat-card:hover .cat-icon-box {
    transform: scale(1.08) rotate(3deg);
}

.cat-badge-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    background: var(--cat-bg, var(--teal-tint));
    color: var(--cat-color, var(--teal));
}

.creative-cat-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
    max-height: 46px;
    word-break: break-word;
}

.creative-cat-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
    max-height: 60px;
    word-break: break-word;
}

.cat-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tag-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    background: #F1F5F9;
    color: var(--ink-soft);
}

.cat-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line-subtle);
}

.cat-ideas-count {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 600;
}

.cat-submit-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.cat-submit-link:hover {
    color: var(--gold-deep);
    gap: 7px;
}

/* Specific Category Color Variables */
.cat-tech {
    --cat-bg: #EEF2FF;
    --cat-color: #4F46E5;
    --accent-gradient: linear-gradient(90deg, #6366F1, #8B5CF6);
}
.cat-edu {
    --cat-bg: #ECFDF5;
    --cat-color: #059669;
    --accent-gradient: linear-gradient(90deg, #10B981, #059669);
}
.cat-agri {
    --cat-bg: #FEF3C7;
    --cat-color: #D97706;
    --accent-gradient: linear-gradient(90deg, #F59E0B, #D97706);
}
.cat-health {
    --cat-bg: #FFE4E6;
    --cat-color: #E11D48;
    --accent-gradient: linear-gradient(90deg, #F43F5E, #E11D48);
}
.cat-env {
    --cat-bg: #F0FDF4;
    --cat-color: #16A34A;
    --accent-gradient: linear-gradient(90deg, #22C55E, #16A34A);
}
.cat-safety {
    --cat-bg: #FFF7ED;
    --cat-color: #EA580C;
    --accent-gradient: linear-gradient(90deg, #FB923C, #EA580C);
}
.cat-women {
    --cat-bg: #F3E8FF;
    --cat-color: #7C3AED;
    --accent-gradient: linear-gradient(90deg, #A855F7, #7C3AED);
}
.cat-welfare {
    --cat-bg: #ECFEFF;
    --cat-color: #0891B2;
    --accent-gradient: linear-gradient(90deg, #06B6D4, #0891B2);
}
.cat-other {
    --cat-bg: #F8FAFC;
    --cat-color: #475569;
    --accent-gradient: linear-gradient(90deg, #64748B, #334155);
}

/* ---------- Spotlight Showcase Cards (Creative Ideas) ---------- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.showcase-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(194, 65, 12, 0.25);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.stage-badge.pilot {
    background: #EFF6FF;
    color: #2563EB;
    border-color: #BFDBFE;
}

.stage-badge.shortlist {
    background: #FEF3C7;
    color: #D97706;
    border-color: #FDE68A;
}

.dept-tag {
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
}

.showcase-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.showcase-card p.concept-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
}

.showcase-submitter-box {
    background: #F8FAF9;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--line-subtle);
}

.submitter-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal-tint);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.submitter-info strong {
    font-size: 13px;
    color: var(--teal-900);
    display: block;
}

.submitter-info small {
    font-size: 12px;
    color: var(--ink-soft);
}

.showcase-impact-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: #F1F5F9;
    font-size: 12.5px;
}

.feasibility-score {
    font-weight: 700;
    color: var(--teal-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.showcase-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.btn-upvote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-upvote:hover, .btn-upvote.liked {
    background: #FFE4E6;
    border-color: #FDA4AF;
    color: #E11D48;
    transform: scale(1.03);
}

.btn-upvote svg {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-upvote:hover svg, .btn-upvote.liked svg {
    transform: scale(1.25);
}

/* ---------- 4-Step Submission Roadmap ---------- */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-700) 0%, var(--gold) 50%, var(--mint) 100%);
    z-index: 1;
}

.roadmap-step-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-card);
    transition: all 0.25s ease;
}

.roadmap-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--teal-700);
}

.step-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-900);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px #FFFFFF, 0 4px 14px rgba(56, 15, 2, 0.25);
    border: 2px solid var(--gold);
}

.step-time-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-deep);
    background: var(--gold-light);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.roadmap-step-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 8px;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.roadmap-step-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin: 0;
    min-height: 64px;
}

/* ---------- Interactive Live Idea Tracker Widget ---------- */
.tracker-section {
    background: linear-gradient(145deg, #380F02 0%, #7C2D12 100%);
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: 0 20px 48px rgba(56, 15, 2, 0.3);
    margin: 30px 0 60px;
    position: relative;
    overflow: hidden;
}

.tracker-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 183, 56, 0.18) 0%, transparent 70%);
}

.tracker-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.tracker-text h2 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tracker-text p {
    color: #CFE4DE;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tracker-demo-row {
    font-size: 12.5px;
    color: #A3C9BF;
}

.demo-link {
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.tracker-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 26px;
}

.tracker-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tracker-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 12px 20px;
    font-size: 14.5px;
    color: var(--ink);
    outline: none;
    font-weight: 500;
}

.tracker-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.35);
    background: #FFFFFF;
}

.tracker-result-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.tracker-status-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tracker-ref-display {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 15px;
}

.tracker-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
    margin: 18px 0;
}

.tracker-step-item {
    text-align: center;
    font-size: 11px;
    color: #94A3B8;
    position: relative;
}

.tracker-step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #CBD5E1;
    display: grid;
    place-items: center;
    margin: 0 auto 6px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tracker-step-item.completed .tracker-step-dot {
    background: var(--mint);
    color: var(--teal-950);
}

.tracker-step-item.active .tracker-step-dot {
    background: var(--gold);
    color: var(--teal-950);
    box-shadow: 0 0 10px var(--gold);
}

.tracker-step-item.completed span,
.tracker-step-item.active span {
    color: #FFFFFF;
    font-weight: 600;
}

.tracker-step-notes {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: #CFE4DE;
    line-height: 1.5;
}

/* ---------- Bento Grid: Why Submit? Innovator Rewards ---------- */
.bento-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
}

.bento-card {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.bento-card.highlight {
    grid-row: span 2;
    background: linear-gradient(145deg, #072B24 0%, #0D493F 100%);
    color: #FFFFFF;
    border: 1px solid rgba(0, 245, 160, 0.3);
}

.bento-card.highlight h3 {
    color: #FFFFFF;
    font-size: 24px;
}

.bento-card.highlight p {
    color: #CFE4DE;
    font-size: 15px;
}

.bento-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--teal-tint);
    color: var(--teal);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.bento-card.highlight .bento-icon {
    background: rgba(0, 245, 160, 0.2);
    color: var(--mint);
}

.bento-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

.bento-card-badge {
    align-self: flex-start;
    margin-top: 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--teal);
    background: var(--teal-tint);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.bento-card.highlight .bento-card-badge {
    background: rgba(245, 183, 56, 0.2);
    color: var(--gold);
}

/* ---------- FAQ Accordion ---------- */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.faq-item.active {
    border-color: var(--teal-700);
    box-shadow: var(--shadow-card);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--teal-900);
    gap: 16px;
    user-select: none;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: var(--teal);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* ---------- High-Impact Bottom CTA Banner ---------- */
.cta-banner-wrap {
    background: linear-gradient(135deg, #220901 0%, #0A3E34 60%, #041E19 100%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(56, 15, 2, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-banner-wrap::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(245, 183, 56, 0.2) 0%, transparent 70%);
}

.cta-banner-wrap::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    background: radial-gradient(circle, rgba(0, 245, 160, 0.18) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.cta-content p {
    color: #CFE4DE;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cta-button-group {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- Concept Brief Modal Popup ---------- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 20, 17, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    place-items: center;
    z-index: 100;
    padding: 20px;
}

.modal-backdrop.open {
    display: grid;
}

.modal-dialog {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: var(--ink-soft);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: #E2E8F0;
    color: var(--teal-900);
}

.modal-category-chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background: var(--teal-tint);
    color: var(--teal);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.modal-dialog h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 18px;
    line-height: 1.3;
}

.modal-body-section {
    margin-bottom: 20px;
}

.modal-body-section h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.modal-body-section p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

.modal-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: #F8FAF9;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 24px;
}

.modal-meta-item dt {
    font-size: 11.5px;
    color: var(--ink-muted);
    font-weight: 500;
}

.modal-meta-item dd {
    margin: 4px 0 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--teal-900);
}

/* ---------- Site Footer ---------- */
.site-footer {
    background: #041A15;
    color: #B9CFC8;
    padding: 60px 0 30px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand strong {
    color: #FFFFFF;
    font-size: 17px;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-col strong {
    color: #FFFFFF;
    font-size: 14.5px;
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #A3C9BF;
    font-size: 13.5px;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-helpline-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-helpline-box strong {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 4px;
}

.footer-helpline-box small {
    display: block;
    color: #A3C9BF;
    font-size: 11.5px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: #64748B;
}

/* ==========================================================================
   Existing Form & Thank You Page Styles (PRESERVED & ENHANCED)
   ========================================================================== */
.page-hero {
    background: linear-gradient(145deg, #380F02 0%, #7C2D12 100%);
    padding: 48px 0 72px;
    color: #FFFFFF;
}

.page-hero .eyebrow-note {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.page-hero h1 {
    color: #FFFFFF;
    font-size: 32px;
    max-width: 620px;
}

.page-hero p.lede {
    color: #CFE4DE;
    max-width: 560px;
    margin-top: 10px;
    font-size: 15px;
}

.form-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    margin-top: -44px;
    padding-bottom: 80px;
    align-items: start;
    position: relative;
}

.form-rail {
    position: sticky;
    top: 90px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.form-rail h4 {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-rail ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-rail li a {
    display: block;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 13.5px;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.form-rail li a:hover {
    background: var(--teal-tint);
    color: var(--teal-700);
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

fieldset.section {
    border: none;
    margin: 0;
    padding: 34px 34px;
    border-bottom: 1px solid var(--line);
}

fieldset.section:last-of-type {
    border-bottom: none;
}

fieldset.section legend {
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--teal-900);
    margin-bottom: 4px;
    width: 100%;
}

.section-hint {
    color: var(--ink-soft);
    font-size: 13.5px;
    margin: 0 0 24px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 22px;
}

.field-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.span-2 {
    grid-column: span 2;
}

.field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.field .optional {
    font-weight: 400;
    color: var(--ink-soft);
}

.field .field-help {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin: -2px 0 2px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field input[type="file"],
.field select,
.field textarea {
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    background: #FFFFFF;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 11px 14px;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    resize: vertical;
    min-height: 96px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.15);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger);
    background: var(--danger-bg);
}

.field .error-text {
    font-size: 12.5px;
    color: var(--danger);
    font-weight: 500;
    display: none;
}

.field.has-error .error-text {
    display: block;
}

.radio-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.radio-row label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    cursor: pointer;
}

.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--ink);
    padding: 10px 0;
}

.checkbox-row input {
    margin-top: 4px;
    cursor: pointer;
}

.upload-field {
    border: 1.5px dashed var(--line);
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    background: var(--teal-tint);
}

.upload-field .upload-note {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 6px;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 34px 34px;
    gap: 16px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 12.5px;
    color: var(--ink-soft);
}

.alert {
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 14px;
    margin: 24px 34px 0;
    border: 1px solid transparent;
}

.alert-error {
    background: var(--danger-bg);
    border-color: #FCA5A5;
    color: var(--danger);
}

/* Success / Thank you page */
.success-wrap {
    padding: 90px 0;
}

.success-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 52px 44px;
    text-align: center;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--line);
}

.success-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--success-bg);
    color: var(--success);
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.ref-no {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 26px;
    background: var(--teal-tint);
    border: 1.5px dashed var(--teal);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--teal-900);
}

.success-meta {
    text-align: left;
    border-top: 1px solid var(--line);
    margin-top: 32px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    font-size: 14px;
}

.success-meta dt {
    color: var(--ink-muted);
    font-size: 12.5px;
}

.success-meta dd {
    margin: 2px 0 0;
    font-weight: 600;
    color: var(--ink);
}

/* ---------- Responsive Media Queries ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .creative-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .roadmap-grid::before {
        display: none;
    }
    .tracker-inner {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-card.highlight {
        grid-row: span 1;
        grid-column: span 2;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #9A3412;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .header-nav.mobile-open {
        display: flex;
    }
    .hero {
        padding: 50px 0 70px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .creative-category-grid {
        grid-template-columns: 1fr;
    }
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.highlight {
        grid-column: span 1;
    }
    .cta-banner-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 28px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .form-layout {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .field-grid, .field-grid.cols-3 {
        grid-template-columns: 1fr;
    }
    .field.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .dash-metrics-grid {
        grid-template-columns: 1fr;
    }
    .tracker-form-row {
        flex-direction: column;
    }
    .auth-toggle-bar {
        flex-direction: column;
        border-radius: 16px;
    }
    .auth-toggle-btn {
        border-radius: 12px;
    }
}

/* ==========================================================================
   PARTICIPANT AUTH & ONBOARDING PORTAL (COMPACT & HIGH-DENSITY)
   ========================================================================== */
.auth-page-bar {
    background: linear-gradient(135deg, #051F1A 0%, #0A362E 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.auth-page-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.auth-bar-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #94A3B8;
}

.auth-bar-breadcrumb a {
    color: #CFE4DE;
    text-decoration: none;
    font-weight: 500;
}

.auth-bar-breadcrumb a:hover {
    color: var(--gold);
}

.auth-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 245, 160, 0.12);
    border: 1px solid rgba(0, 245, 160, 0.3);
    color: #6EE7B7;
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
}

.auth-bar-helpline {
    font-size: 12px;
    color: #CFE4DE;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-bar-helpline strong {
    color: var(--gold);
}

.auth-portal-section {
    background: #F4FAF7;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(194, 65, 12, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(245, 183, 56, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(185, 243, 222, 0.35) 0%, transparent 40%);
    padding: 10px 0 14px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Split Modern Portal Layout - Fits Exactly In One View Without Scrolling */
.auth-split-layout {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #D6E6DF;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(56, 15, 2, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
    height: 425px;
    max-height: 430px;
}

/* Left Panel: Pure Photo Flush Edge-to-Edge */
.auth-photo-panel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #041B16;
    margin: 0;
    padding: 0;
}

.auth-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Panel: Clean Integrated Form Panel */
.auth-form-panel {
    background: #FFFFFF;
    padding: 20px 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow-y: auto;
}

.auth-toggle-wrapper-clean {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.auth-title-clean {
    text-align: center;
    margin-bottom: 14px;
}

.auth-title-clean h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-900);
    margin: 0 0 3px;
}

.auth-title-clean p {
    font-size: 11.5px;
    color: #64748B;
    margin: 0;
}



.auth-card-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: #FAFCFB;
    border-bottom: 1px solid #E8F0EC;
    flex-wrap: wrap;
    gap: 12px;
}

.auth-card-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #380F02;
    color: var(--gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.auth-card-title-group h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--teal-900);
    margin: 0;
    line-height: 1.2;
}

.auth-card-title-group p {
    font-size: 11px;
    color: #64748B;
    margin: 2px 0 0;
    line-height: 1;
}

.auth-toggle-bar {
    display: inline-flex;
    gap: 4px;
    background: #E8F3EE;
    padding: 3px;
    border-radius: 50px;
    border: 1px solid #D2E4DC;
}

@media (max-width: 860px) {
    .auth-split-layout {
        grid-template-columns: 1fr;
    }
    .auth-showcase-panel {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .auth-showcase-img {
        height: 150px;
    }
}

.auth-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 15px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #4B5563;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-toggle-btn.active {
    background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

.auth-toggle-btn:not(.active):hover {
    color: #C2410C;
    background: rgba(255, 255, 255, 0.6);
}

.auth-form-pane {
    padding: 16px 22px 20px;
    animation: authFadeIn 0.25s ease;
}

.auth-pane-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #E2E8F0;
}

.auth-pane-header-compact h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--teal-900);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-pane-header-compact p {
    font-size: 11.5px;
    color: #64748B;
    margin: 0;
}

.auth-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
}

.auth-grid-compact .span-full {
    grid-column: span 2;
}

.auth-field-compact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.auth-field-compact label {
    font-size: 11.5px;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.auth-field-compact label .req {
    color: #E11D48;
    font-weight: 700;
    margin-left: 2px;
}

.auth-field-compact label .field-hint {
    font-size: 10.5px;
    font-weight: 500;
    color: #64748B;
}

.auth-input-compact,
.auth-select-compact {
    width: 100%;
    height: 35px;
    padding: 6px 11px;
    border-radius: 7px;
    border: 1.5px solid #CBD5E1;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #0F172A;
    background: #FFFFFF;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.auth-input-compact:focus,
.auth-select-compact:focus {
    border-color: #EA580C;
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

.auth-input-compact::placeholder {
    color: #94A3B8;
    font-size: 12px;
}

.phone-prefix-wrap-compact {
    display: flex;
    gap: 6px;
    align-items: center;
}

.phone-prefix-badge-compact {
    height: 35px;
    background: #F1F5F9;
    border: 1.5px solid #CBD5E1;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    user-select: none;
}

.auth-checkbox-row-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: #475569;
    line-height: 1.35;
    margin-top: 2px;
}

.auth-checkbox-row-compact input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--teal);
    cursor: pointer;
    flex-shrink: 0;
}

.auth-submit-btn-compact {
    width: 100%;
    height: 38px;
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 3px 10px rgba(245, 183, 56, 0.3);
    transition: all 0.2s ease;
    margin-top: 6px;
}

.auth-submit-btn-compact:hover {
    background: linear-gradient(135deg, #F7C355 0%, #EAA722 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(245, 183, 56, 0.42);
    color: #08261F;
}

.auth-submit-btn-compact .btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.auth-submit-btn-compact:hover .btn-arrow {
    transform: translateX(3px);
}

.auth-footer-prompt-compact {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #F1F5F9;
    text-align: center;
    font-size: 11.5px;
    color: #64748B;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.auth-switch-link-compact {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 11.5px;
}

.auth-switch-link-compact:hover {
    color: var(--teal-900);
    text-decoration: underline;
}

.login-support-strip {
    background: #F8FAF9;
    border: 1px dashed #CBD5E1;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11.5px;
    color: #475569;
    gap: 8px;
}

.login-support-strip strong {
    color: var(--teal-900);
}

@media (max-width: 640px) {
    .auth-card-topbar {
        flex-direction: column;
        align-items: stretch;
    }
    .auth-toggle-bar {
        width: 100%;
    }
    .auth-toggle-btn {
        flex: 1;
    }
    .auth-grid-compact {
        grid-template-columns: 1fr;
    }
    .auth-grid-compact .span-full {
        grid-column: span 1;
    }
}

/* Compact Login Container & Perfectly Matched Button/Input Sizing */
.auth-login-box {
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

#form-login {
    display: flex;
    flex-direction: column;
}

#send-otp-btn-row {
    margin-top: 14px;
}

/* Initial State: Perfectly proportioned to fit in one single screen view */
.auth-login-box.state-initial {
    padding: 0;
    gap: 0;
}

.auth-login-box.state-initial .login-support-strip {
    margin-top: 14px;
}

.auth-login-box.state-initial .auth-footer-prompt-compact {
    margin-top: 10px;
}

/* OTP State: Compact */
.auth-login-box.state-otp {
    padding: 0;
    gap: 0;
}

.auth-login-box.state-otp .login-support-strip {
    margin-top: 10px;
}

.auth-login-box.state-otp .auth-footer-prompt-compact {
    margin-top: 8px;
}



.auth-btn-full {
    width: 100%;
    height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

.auth-btn-full:hover {
    background: linear-gradient(135deg, #9A3412 0%, #C2410C 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.45);
}

.auth-btn-full.gold {
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 183, 56, 0.28);
}

.auth-btn-full.gold:hover {
    background: linear-gradient(135deg, #F7C355 0%, #EAA722 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 183, 56, 0.4);
}

.btn-compact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    height: 36px;
    padding: 0 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #380F02;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(56, 15, 2, 0.15);
}

.btn-compact-btn.gold {
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 183, 56, 0.28);
}

/* OTP Reveal Animation */
.otp-reveal-box {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #D6E6DF;
    animation: otpSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.otp-alert-pill {
    background: #EBF7F2;
    border: 1px solid #A7DDC8;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11.5px;
    color: #064E3B;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
}

.otp-code-highlight {
    background: #FFFFFF;
    border: 1px dashed #C2410C;
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 700;
    color: #C2410C;
    letter-spacing: 1.5px;
}

.btn-send-otp-primary {
    width: 100%;
    height: 38px;
    background: #380F02;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-send-otp-primary:hover {
    background: #0C3F35;
}

/* ==========================================================================
   INNOVATOR DASHBOARD STYLES (THEME-MATCHED & RICH)
   ========================================================================== */
.dash-page-header {
    background: linear-gradient(135deg, #051F1A 0%, #0A362E 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.dash-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.dash-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.dash-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
    font-weight: 800;
    font-size: 16px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(245, 183, 56, 0.3);
}

.dash-user-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.dash-user-info p {
    font-size: 12px;
    color: #CFE4DE;
    margin: 2px 0 0;
}

.dash-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.dash-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--gold);
}

.dash-main-container {
    padding: 24px 0 60px;
    background: #F4FAF7;
    min-height: calc(100vh - 160px);
}

.dash-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.dash-metric-card {
    background: #FFFFFF;
    border: 1px solid #D6E6DF;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(56, 15, 2, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease;
}

.dash-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(56, 15, 2, 0.08);
}

.dash-metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #E8F3EE;
    color: #EA580C;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.dash-metric-icon.gold {
    background: #FEF3C7;
    color: #D97706;
}

.dash-metric-icon.green {
    background: #D1FAE5;
    color: #059669;
}

.dash-metric-icon.blue {
    background: #E0E7FF;
    color: #4F46E5;
}

.dash-metric-text small {
    display: block;
    font-size: 11.5px;
    color: #64748B;
    font-weight: 500;
}

.dash-metric-text strong {
    display: block;
    font-size: 18px;
    color: #380F02;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
}

.dash-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.dash-card {
    background: #FFFFFF;
    border: 1px solid #D6E6DF;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(56, 15, 2, 0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

.dash-card-head {
    padding: 14px 20px;
    background: #FAFCFB;
    border-bottom: 1px solid #E8F0EC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-card-head h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--teal-900);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-card-body {
    padding: 18px 20px;
}

/* Submission item card */
.submission-item-box {
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
    background: #FAFCFB;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.submission-item-box:hover {
    border-color: #EA580C;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.08);
}

.submission-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.submission-item-head h4 {
    font-size: 15px;
    font-weight: 700;
    color: #380F02;
    margin: 0 0 4px;
}

.status-chip {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-chip.review {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
}

.status-chip.approved {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.submission-meta-row {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #64748B;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.submission-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.submission-actions {
    display: flex;
    gap: 8px;
}

.btn-dash-sm {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-dash-sm.primary {
    background: #EA580C;
    color: #FFFFFF;
}

.btn-dash-sm.primary:hover {
    background: #0C4E42;
}

.btn-dash-sm.secondary {
    background: #F1F5F9;
    color: #334155;
}

.btn-dash-sm.secondary:hover {
    background: #E2E8F0;
}

@media (max-width: 992px) {
    .dash-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .dash-metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HIGH-DENSITY SIDEBAR DASHBOARD APP LAYOUT (PARTICIPANT & ADMINISTRATOR)
   ========================================================================== */
.dash-app-layout {
    display: flex;
    min-height: calc(100vh - 105px);
    background: #F1F6F4;
}

/* Sidebar Styling */
.dash-sidebar {
    width: 240px;
    min-width: 240px;
    background: #EBF5F0;
    color: #1E3A34;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #CFE5DB;
    padding: 14px 10px;
    flex-shrink: 0;
    position: sticky;
    top: 57px;
    height: calc(100vh - 57px);
    overflow-y: auto;
    z-index: 30;
    align-self: flex-start;
}

.dash-sidebar::-webkit-scrollbar {
    width: 4px;
}

.dash-sidebar::-webkit-scrollbar-thumb {
    background: rgba(194, 65, 12, 0.2);
    border-radius: 4px;
}

.dash-sidebar-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 8px 12px;
    border-bottom: 1px solid #CFE5DB;
    margin-bottom: 12px;
}

.dash-sidebar-logo {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(194, 65, 12, 0.12);
    border: 1px solid rgba(194, 65, 12, 0.25);
    display: grid;
    place-items: center;
    color: #C2410C;
}

.dash-sidebar-header-text h3 {
    font-size: 13px;
    font-weight: 700;
    color: #C2410C;
    margin: 0;
    line-height: 1.2;
}

.dash-sidebar-header-text small {
    font-size: 10px;
    color: #64748B;
    display: block;
}

/* Sidebar User Snippet */
.dash-sidebar-user {
    background: rgba(194, 65, 12, 0.06);
    border: 1px solid rgba(194, 65, 12, 0.12);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.dash-sidebar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #C2410C;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.dash-sidebar-avatar.admin {
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
}

.dash-sidebar-uinfo {
    overflow: hidden;
}

.dash-sidebar-uname {
    font-size: 12px;
    font-weight: 600;
    color: #380F02;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.dash-sidebar-urole {
    font-size: 10px;
    font-weight: 600;
    color: #C2410C;
    display: inline-block;
}

.dash-sidebar-urole.admin {
    color: #B45309;
}

/* Nav Menu */
.dash-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 8px;
    color: #1E3A34;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.16s ease;
}

.dash-nav-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-nav-item-left svg {
    stroke: #C2410C;
    transition: stroke 0.16s ease;
}

.dash-nav-item:hover {
    color: #C2410C !important;
    background: #D8EDE3;
}

.dash-nav-item:hover .dash-nav-item-left svg {
    stroke: #C2410C;
}

.dash-nav-item.active {
    color: #FFFFFF !important;
    background: #C2410C !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(194, 65, 12, 0.25);
    border-left: 3px solid #F5B738;
}

.dash-nav-item.active span,
.dash-nav-item.active svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

.dash-nav-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    background: rgba(194, 65, 12, 0.12);
    color: #C2410C;
}

.dash-nav-badge.gold {
    background: #F5B738;
    color: #380F02;
}

.dash-nav-badge.green {
    background: #10B981;
    color: #FFFFFF;
}

/* Sidebar Footer */
.dash-sidebar-footer {
    padding-top: 10px;
    border-top: 1px solid #CFE5DB;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: #EBF5F0;
    z-index: 5;
}

.dash-sidebar-help {
    font-size: 10.5px;
    color: #C2410C;
    background: rgba(194, 65, 12, 0.08);
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.dash-sidebar-logout-btn {
    width: 100%;
    padding: 8px 10px;
    border-radius: 7px;
    background: #FEE2E2;
    border: 1px solid #FECACA;
    color: #DC2626;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.15s ease;
}

.dash-sidebar-logout-btn:hover {
    background: #FCA5A5;
    color: #991B1B;
    border-color: #F87171;
}

/* Main Content Pane */
.dash-main-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #F1F6F4;
}

/* Topbar */
.dash-topbar {
    height: 48px;
    background: #FFFFFF;
    border-bottom: 1px solid #D6E6DF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    flex-shrink: 0;
}

.dash-topbar-breadcrumb {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-topbar-breadcrumb strong {
    color: #0F172A;
}

.dash-topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-quick-btn {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dash-quick-btn:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
}

.dash-quick-btn.primary {
    background: #380F02;
    color: #FFFFFF;
    border-color: #380F02;
}

.dash-quick-btn.primary:hover {
    background: #0E4B3E;
}

.dash-quick-btn.gold {
    background: linear-gradient(135deg, #F5B738 0%, #E29B17 100%);
    color: #08261F;
    border: none;
}

/* Workspace Area */
.dash-workspace {
    padding: 14px 18px 32px;
}

/* Compact KPI Grid: High Density */
.dash-compact-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dash-kpi-compact-card {
    background: #FFFFFF;
    border: 1px solid #D6E6DF;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 1px 4px rgba(56, 15, 2, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-kpi-compact-text small {
    display: block;
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
    line-height: 1.2;
}

.dash-kpi-compact-text strong {
    display: block;
    font-size: 16px;
    color: #380F02;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
}

.dash-kpi-compact-text .kpi-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

.dash-kpi-compact-text .kpi-chip.green {
    background: #DEF7EC;
    color: #03543F;
}

.dash-kpi-compact-text .kpi-chip.gold {
    background: #FEF3C7;
    color: #92400E;
}

.dash-kpi-compact-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.dash-kpi-compact-icon.green {
    background: #E8F7F0;
    color: #059669;
}

.dash-kpi-compact-icon.gold {
    background: #FEF3C7;
    color: #D97706;
}

.dash-kpi-compact-icon.blue {
    background: #EEF2FF;
    color: #4F46E5;
}

.dash-kpi-compact-icon.teal {
    background: #E6F5F2;
    color: #C2410C;
}

/* High-Density 2-Column Grid */
.dash-dense-grid-2 {
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: 12px;
}

/* Dense Card Container */
.dash-dense-card {
    background: #FFFFFF;
    border: 1px solid #D6E6DF;
    border-radius: 9px;
    box-shadow: 0 2px 6px rgba(56, 15, 2, 0.03);
    overflow: hidden;
    margin-bottom: 12px;
}

.dash-dense-head {
    padding: 9px 13px;
    background: #FAFCFB;
    border-bottom: 1px solid #E8F0EC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-dense-head h3 {
    font-size: 13px;
    font-weight: 700;
    color: #380F02;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-dense-body {
    padding: 12px 13px;
}

/* Dense Table */
.dash-dense-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11.5px;
}

.dash-dense-table th {
    padding: 7px 10px;
    background: #F8FAF9;
    border-bottom: 1.5px solid #E2E8F0;
    text-align: left;
    font-size: 10.5px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dash-dense-table td {
    padding: 7px 10px;
    border-bottom: 1px solid #F1F5F9;
    color: #334155;
    vertical-align: middle;
}

.dash-dense-table tr:hover td {
    background: #FAFCFB;
}

/* Dense Filter Pills */
.dash-pill-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.dash-filter-pill {
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dash-filter-pill:hover,
.dash-filter-pill.active {
    background: #380F02;
    color: #FFFFFF;
    border-color: #380F02;
}

/* Status Chips Compact */
.dash-chip-compact {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dash-chip-compact.verified,
.dash-chip-compact.approved {
    background: #DEF7EC;
    color: #03543F;
}

.dash-chip-compact.pending,
.dash-chip-compact.review {
    background: #FEF08A;
    color: #713F12;
}

.dash-chip-compact.screening {
    background: #E0E7FF;
    color: #3730A3;
}

.dash-chip-compact.expired {
    background: #F1F5F9;
    color: #64748B;
}

/* Compact Progress Stepper */
.stepper-compact-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 6px 0;
}

.stepper-compact-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stepper-compact-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #64748B;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-bottom: 3px;
}

.stepper-compact-circle.done {
    background: #059669;
    color: #FFFFFF;
}

.stepper-compact-circle.current {
    background: #F5B738;
    color: #380F02;
    box-shadow: 0 0 0 3px rgba(245, 183, 56, 0.25);
}

.stepper-compact-label {
    font-size: 10.5px;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .dash-app-layout {
        flex-direction: column;
    }
    .dash-sidebar {
        width: 100%;
        min-width: 100%;
        position: static;
        height: auto;
    }
    .dash-compact-kpis {
        grid-template-columns: repeat(2, 1fr);
    }
    .dash-dense-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dash-compact-kpis {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MINIMALIST 4-CARD ANIMATED DASHBOARD (COMPACT + PASTEL TINTS)
   ========================================================================== */
.anim-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 220px);
    gap: 16px;
    margin-top: 0;
}

.anim-card {
    position: relative;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(56, 15, 2, 0.03);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
}

/* Individual "Fika-Fika" Subtle Pastel Backgrounds */
.anim-card.tint-green {
    background: #F1FAF5;
    border: 1.2px solid #D1F0E0;
}
.anim-card.tint-green:hover {
    background: #E8F7EE;
    border-color: #10B981;
}

.anim-card.tint-gold {
    background: #FFFDF4;
    border: 1.2px solid #FDE9B4;
}
.anim-card.tint-gold:hover {
    background: #FEF9E6;
    border-color: #F59E0B;
}

.anim-card.tint-blue {
    background: #F4F7FF;
    border: 1.2px solid #DDE5FC;
}
.anim-card.tint-blue:hover {
    background: #EDF2FF;
    border-color: #6366F1;
}

.anim-card.tint-teal {
    background: #F1FCF9;
    border: 1.2px solid #CDF0E8;
}
.anim-card.tint-teal:hover {
    background: #E6F9F5;
    border-color: #14B8A6;
}

.anim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EA580C, #F5B738, #10B981, #EA580C);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(56, 15, 2, 0.08);
}

.anim-card:hover::before {
    opacity: 1;
    animation: gradientShimmer 2.5s linear infinite;
}

.anim-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.anim-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    transition: transform 0.25s ease;
}

.anim-card-icon svg {
    width: 18px;
    height: 18px;
}

.anim-card:hover .anim-card-icon {
    transform: scale(1.08);
}

.anim-card-icon.green {
    background: #DEF7EC;
    color: #059669;
}

.anim-card-icon.gold {
    background: #FEF3C7;
    color: #D97706;
}

.anim-card-icon.blue {
    background: #E0E7FF;
    color: #4F46E5;
}

.anim-card-icon.teal {
    background: #CCFBF1;
    color: #0D9488;
}

.anim-card-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.anim-card-badge.green {
    background: #DEF7EC;
    color: #03543F;
}

.anim-card-badge.gold {
    background: #FEF3C7;
    color: #92400E;
}

.anim-card-badge.blue {
    background: #E0E7FF;
    color: #3730A3;
}

.anim-card-badge.teal {
    background: #CCFBF1;
    color: #115E59;
}

.anim-card-middle small {
    display: block;
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 2px;
}

.anim-card-middle strong {
    display: block;
    font-size: 19px;
    color: #380F02;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1150px) {
    .anim-cards-wrapper {
        grid-template-columns: repeat(2, 215px);
    }
}

@media (max-width: 650px) {
    .anim-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   IDEA SUBMISSION MODULE & PARTICIPANT DASHBOARD STYLES
   ========================================================================== */
.dash-top-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E2E8F0;
}

.dash-heading-wrap h1 {
    font-size: 22px;
    font-weight: 700;
    color: #380F02;
    margin: 0 0 4px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

.dash-heading-wrap p {
    margin: 0;
    font-size: 13px;
    color: #64748B;
}

.btn-submit-idea-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C2410C;
    color: #FFFFFF !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #EA580C;
    box-shadow: 0 2px 6px rgba(194, 65, 12, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-submit-idea-cta:hover {
    background: #9A3412;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.35);
    border-color: #F5B738;
}

.btn-submit-idea-cta .gold-spark {
    color: #F5B738;
    display: inline-flex;
}

/* Submitted Ideas Section */
.dash-ideas-section {
    margin-top: 28px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F1F5F9;
}

.dash-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-section-title h2 {
    font-size: 17px;
    font-weight: 700;
    color: #380F02;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.dash-section-badge {
    background: #E6F4F1;
    color: #C2410C;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}

/* Ideas Table / Grid */
.ideas-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.idea-card-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.idea-card-item:hover {
    background: #FFFFFF;
    border-color: #CBD5E1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.idea-card-main {
    flex: 1;
    min-width: 0;
}

.idea-card-top-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.idea-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #380F02;
    color: #F5B738;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid rgba(245, 183, 56, 0.3);
}

.idea-secure-badge:hover {
    background: #0D3E35;
}

.idea-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.idea-card-excerpt {
    font-size: 12.5px;
    color: #475569;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.idea-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-view-idea {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    color: #C2410C;
    border: 1px solid #C2410C;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    text-decoration: none;
}

.btn-view-idea:hover {
    background: #C2410C;
    color: #FFFFFF;
}

.status-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.badge-submitted {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}

.badge-review {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}

.badge-shortlisted {
    background: #FEF3C7;
    color: #B45309;
    border: 1px solid #FDE68A;
}

.badge-approved {
    background: #F0FDF4;
    color: #15803D;
    border: 1px solid #BBF7D0;
}

/* Empty State */
.ideas-empty-state {
    text-align: center;
    padding: 36px 20px;
    background: #F8FAFC;
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
}

.empty-state-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E6F4F1;
    color: #C2410C;
    display: grid;
    place-items: center;
    margin: 0 auto 12px auto;
}

.ideas-empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 6px 0;
}

.ideas-empty-state p {
    font-size: 13px;
    color: #64748B;
    margin: 0 0 16px 0;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   MODAL DIALOGS (IDEA SUBMISSION & DETAILS)
   ========================================================================== */
.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 18, 15, 0.75);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 16px;
    box-sizing: border-box;
}

.modal-dialog-custom {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    margin: auto;
    animation: modalPopIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-header-custom {
    background: linear-gradient(135deg, #380F02 0%, #C2410C 100%);
    color: #FFFFFF;
    padding: 13px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #F5B738;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.modal-header-custom h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.modal-close-btn:hover {
    background: #E11D48;
    color: #FFFFFF;
    transform: scale(1.08);
}

.modal-body-custom {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
}

/* Compact Idea Form Layout */
.idea-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
}

.idea-form-grid .span-2 {
    grid-column: span 2;
}

.idea-form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.idea-form-group label {
    font-size: 11.5px;
    font-weight: 700;
    color: #1E293B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idea-form-group label span.field-req {
    color: #E11D48;
}

.idea-form-group label span.char-count {
    font-size: 10px;
    font-weight: 500;
    color: #64748B;
}

.idea-form-input,
.idea-form-textarea,
.idea-form-select {
    width: 100%;
    padding: 7px 11px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 12.5px;
    color: #0F172A;
    background: #FFFFFF;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.idea-form-input {
    height: 36px;
}

.idea-form-select {
    height: 36px;
}

.idea-form-input:focus,
.idea-form-textarea:focus,
.idea-form-select:focus {
    border-color: #EA580C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.15);
    background: #FAFCFC;
}

.idea-form-textarea {
    resize: vertical;
    min-height: 58px;
    height: 62px;
    line-height: 1.4;
}

/* File Upload Dropzone */
.idea-dropzone {
    border: 2px dashed #94A3B8;
    background: #F8FAFC;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.idea-dropzone:hover,
.idea-dropzone.dragover {
    border-color: #EA580C;
    background: #F0FDF4;
}

.idea-dropzone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-content {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dropzone-icon {
    color: #EA580C;
    display: flex;
}

.dropzone-text {
    font-size: 12px;
    font-weight: 600;
    color: #1E293B;
}

.dropzone-hint {
    font-size: 10.5px;
    color: #64748B;
}

.dropzone-preview {
    margin-top: 6px;
    padding: 5px 8px;
    background: #E6F4F1;
    border-radius: 6px;
    font-size: 11.5px;
    color: #380F02;
    font-weight: 600;
    display: none;
}

/* Modal Footer */
.modal-footer-custom {
    padding: 10px 20px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.btn-modal-cancel {
    background: #E2E8F0;
    color: #334155;
    border: none;
    padding: 7px 15px;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-modal-cancel:hover {
    background: #CBD5E1;
}

.btn-modal-submit {
    background: linear-gradient(135deg, #EA580C 0%, #380F02 100%);
    color: #FFFFFF;
    border: 1px solid rgba(245, 183, 56, 0.4);
    padding: 7px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(56, 15, 2, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-modal-submit:hover {
    background: linear-gradient(135deg, #0A4D41 0%, #021411 100%);
    border-color: #F5B738;
}

/* Details Box */
.idea-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-section-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
}

.detail-section-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #C2410C;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-section-card p {
    font-size: 13px;
    color: #334155;
    margin: 0;
    line-height: 1.5;
    white-space: pre-line;
}

@media (max-width: 768px) {
    .idea-form-grid {
        grid-template-columns: 1fr;
    }
    .idea-form-grid .span-2 {
        grid-column: span 1;
    }
    .idea-card-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .idea-card-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================================================
   YAJRA DATATABLES CUSTOM STYLING & MODULE
   ========================================================================== */
.dt-container-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow-x: auto;
}

.table-custom-dt {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    font-family: 'Inter', sans-serif !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
}

.table-custom-dt thead th {
    background: #C2410C !important;
    color: #FFFFFF !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    padding: 8px 10px !important;
    border-top: none !important;
    border-bottom: 2px solid #F5B738 !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
}

.table-custom-dt thead th:first-child {
    border-top-left-radius: 5px;
}

.table-custom-dt thead th:last-child {
    border-top-right-radius: 5px;
}

.table-custom-dt tbody tr {
    transition: background 0.12s ease;
}

.table-custom-dt tbody tr:hover {
    background: #F0FDF9 !important;
}

.table-custom-dt tbody td {
    padding: 6px 8px !important;
    font-size: 11.5px !important;
    color: #334155 !important;
    border-bottom: 1px solid #F1F5F9 !important;
    vertical-align: middle !important;
    line-height: 1.3 !important;
}

/* DataTables UI Controls */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    font-size: 12px !important;
    color: #475569 !important;
    margin-bottom: 8px !important;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #CBD5E1 !important;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    font-size: 12px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    margin-left: 6px !important;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #C2410C !important;
    box-shadow: 0 0 0 2px rgba(194, 65, 12, 0.15) !important;
}

.dataTables_wrapper .dataTables_length select {
    border: 1px solid #CBD5E1 !important;
    border-radius: 5px !important;
    padding: 3px 6px !important;
    font-size: 12px !important;
    margin: 0 4px !important;
    outline: none !important;
}

.dataTables_wrapper .dataTables_info {
    font-size: 11.5px !important;
    color: #64748B !important;
    padding-top: 10px !important;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 8px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 5px !important;
    padding: 3px 9px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    border: 1px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    color: #334155 !important;
    margin: 0 2px !important;
    transition: all 0.15s ease !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #C2410C !important;
    color: #FFFFFF !important;
    border-color: #C2410C !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #C2410C !important;
    color: #FFFFFF !important;
    border-color: #C2410C !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: #F8FAFC !important;
    color: #94A3B8 !important;
    border-color: #E2E8F0 !important;
}

/* DT Custom Elements */
.dt-reg-id {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 11px;
    font-weight: 800;
    color: #380F02;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.dt-secure-id {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 10.5px;
    font-weight: 700;
    color: #C2410C;
    background: #FFEDD5;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid rgba(194, 65, 12, 0.2);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.btn-copy-id-dt {
    background: transparent;
    border: 1px solid #CBD5E1;
    color: #64748B;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
}

.btn-copy-id-dt:hover {
    background: #C2410C;
    color: #FFFFFF;
    border-color: #C2410C;
}

.dt-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dt-title-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.dt-sector-tag {
    display: inline-block;
    width: fit-content;
    font-size: 10px;
    font-weight: 600;
    background: #EFF6FF;
    color: #1D4ED8;
    padding: 1px 6px;
    border-radius: 3px;
}

.dt-desc-text {
    font-size: 11.5px;
    color: #64748B;
    line-height: 1.3;
    max-width: 220px;
}

.dt-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    color: #15803D;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.dt-doc-btn:hover {
    background: #15803D;
    color: #FFFFFF;
}

.dt-actions-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-view-dt {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #C2410C;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 4px 9px;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-view-dt:hover {
    background: #380F02;
    transform: translateY(-1px);
}

/* =========================================================
   TOP HEADER LOGOUT & PARTICIPANT REGISTRATION BADGE
   ========================================================= */
.header-participant-reg-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

@media (max-width: 768px) {
    .header-participant-reg-badge {
        font-size: 11px !important;
        padding: 5px 8px !important;
        gap: 4px !important;
    }
}

.header-logout-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 7px 16px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

.header-logout-btn:hover {
    background: #DC2626 !important;
    border-color: #B91C1C !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.35) !important;
    transform: translateY(-1px) !important;
}

.header-logout-btn:active {
    transform: translateY(0) !important;
}

/* =========================================================
   GLOBAL FIRST-LETTER CAPITALIZATION
   ========================================================= */
.dt-title-text,
.dt-sector-tag,
.dash-sidebar-uname,
.dash-sidebar-urole,
.dt-participant-name,
.card-user-name,
.status-badge-compact,
.status-badge {
    text-transform: capitalize !important;
}

/* =========================================================
   ADMIN DASHBOARD REPORTS SUBMENU & DROPDOWN STYLES
   ========================================================= */
.dash-nav-dropdown-group {
    display: flex;
    flex-direction: column;
}

.dash-nav-submenu {
    padding-left: 10px;
    margin: 2px 0 6px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-submenu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dash-submenu-item:hover {
    background: #EBF5F0;
    color: #C2410C;
}

.dash-submenu-item.active {
    background: #C2410C;
    color: #FFFFFF !important;
    font-weight: 600;
}

.dropdown-chevron {
    transition: transform 0.2s ease;
}

.dropdown-chevron.rotated {
    transform: rotate(180deg);
}
