/* ==========================================================================
   GINGER E-Advisory Glassmorphic Design System
   ========================================================================== */

:root {
    --bg-primary: #FAF9EE;
    --brand-red: #E52E2E;
    --brand-red-dark: #C01F1F;
    --accent-yellow: #F4E869;
    --accent-yellow-bright: #F7D02C;
    --text-primary: #1A1D20;
    --text-muted: #4A5568;
    
    /* Pastel Card Accents */
    --pastel-pink: rgba(254, 226, 246, 0.65);
    --pastel-blue: rgba(224, 242, 254, 0.65);
    --pastel-green: rgba(220, 252, 231, 0.65);
    
    /* Glass Tokens */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-border-highlight: rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 20px 50px -10px rgba(180, 160, 90, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    --glass-blur: blur(20px) saturate(180%);
    
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-pill: 100px;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Ambient Glow Background Orbs */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    top: -120px;
    left: -50px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(244, 232, 105, 0.5) 0%, rgba(255,255,255,0) 70%);
}

.glow-2 {
    top: 30%;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 180, 160, 0.4) 0%, rgba(255, 230, 180, 0.1) 70%);
}

.glow-3 {
    bottom: -100px;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 252, 231, 0.55) 0%, rgba(255,255,255,0) 70%);
}

/* Main Container */
.app-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px 24px;
}

/* Glassmorphism Helper */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-top: 1.5px solid var(--glass-border-highlight);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   Section 1: Dominant First Page Hero (Ginger E-Advisory)
   ========================================================================== */

.dominant-hero-section {
    margin-bottom: 40px;
}

.hero-card-dominant {
    padding: 48px 44px;
    border-radius: 44px;
    position: relative;
    overflow: visible;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 2px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px -10px rgba(220, 180, 60, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.top-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.brand-badge-inline {
    background: var(--brand-red);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.floating-badge-tag {
    background: rgba(229, 46, 46, 0.08);
    color: var(--brand-red);
    border: 1px dashed rgba(229, 46, 46, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 245, 200, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(244, 232, 105, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: #854D0E;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(229, 46, 46, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 46, 46, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(229, 46, 46, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 46, 46, 0); }
}

.hero-card-header {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-card-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 10px;
    text-align: center;
}

.main-title-dominant {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.sub-advisory {
    color: var(--brand-red);
}

.india-map-icon {
    width: 44px;
    height: 44px;
    color: #1A1D20;
}

/* Dynamic Phrase Box Dominant (Glassmorphism & Red Accent) */
.dynamic-phrase-box-dominant {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(244, 232, 105, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 20px 38px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Rounded Red Accent Bar on Left Edge */
.dynamic-phrase-box-dominant::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--brand-red);
}

.phrase-prefix {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    line-height: 1;
    display: flex;
    align-items: center;
    margin: 0;
}

.animated-word-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    overflow: hidden;
}

.changing-word {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.changing-word.swap-out {
    opacity: 0;
    transform: translateY(-24px) scale(0.9);
}

.changing-word.swap-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lang-meta-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.06);
    padding: 6px 12px;
    border-radius: 8px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Scientific Extension Phrases (Glassmorphism Container) */
.scientific-phrases-dominant {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    background: rgba(255, 252, 235, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 232, 105, 0.6);
    border-top: 1.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.phrase-line {
    font-size: 1.05rem;
    color: #2D3748;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.phrase-line strong {
    color: #111827;
}

/* CTA Box (Center Aligned Glass Form) */
.cta-box-dominant {
    max-width: 640px;
    margin: 0 auto 28px auto;
    text-align: center;
}

.notify-form {
    margin: 0 auto 12px auto;
}

.input-glass-group {
    display: flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid rgba(244, 232, 105, 0.9);
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    padding: 8px 10px 8px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.95);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-glass-group:focus-within {
    border-color: var(--brand-red);
    box-shadow: 0 14px 36px rgba(229, 46, 46, 0.15), inset 0 1px 1px #FFF;
}

.input-glass-group input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text-primary);
}

.notify-submit-btn {
    background: var(--brand-red);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.notify-submit-btn:hover {
    background: var(--brand-red-dark);
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(229, 46, 46, 0.4);
}

.subscriber-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding-left: 0;
}

/* Animated Ginger Rhizome (Main Div Bottom Left - Overflowing Out) */
.bottom-left-ginger-container {
    position: absolute;
    bottom: -45px;
    left: -35px;
    z-index: 20;
    width: 220px;
    height: 200px;
    cursor: pointer;
    pointer-events: auto;
}

.bottom-left-ginger-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.22));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-left-ginger-container:hover .bottom-left-ginger-img {
    transform: scale(1.15) rotate(10deg) translateY(-14px);
    filter: drop-shadow(0 25px 45px rgba(229, 46, 46, 0.4));
    animation: gingerFloat 0.8s ease-in-out infinite alternate;
}

@keyframes gingerFloat {
    0% { transform: scale(1.15) rotate(8deg) translateY(-14px); }
    100% { transform: scale(1.2) rotate(14deg) translateY(-18px); }
}

.rhizome-graphic-container {
    display: flex;
    justify-content: flex-end;
}

.rhizome-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    padding: 12px 22px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.9);
}

.rhizome-emoji {
    font-size: 2.2rem;
}

.rhizome-text {
    display: flex;
    flex-direction: column;
}

.r-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-red-dark);
}

.r-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Section 2: Followed By Decision Support Tools (DS Tools)
   ========================================================================== */

.ds-tools-section {
    margin-bottom: 48px;
}

.ds-tools-card {
    padding: 40px 36px;
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 2px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px -10px rgba(220, 180, 60, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.tools-header-container {
    text-align: center;
    margin-bottom: 28px;
}

.tools-header-badge {
    display: inline-block;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 12px;
}

.tools-header-badge h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: 2px;
}

.tools-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Decision Support Tools Grid (Frosted Glass Chips) */
.tools-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 32px;
}

.tool-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.98);
    padding: 16px 20px;
    border-radius: 18px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.tool-chip:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--brand-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(229, 46, 46, 0.15), inset 0 1px 1px #FFF;
}

.tool-chip.highlight-tool {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,253,240,0.85) 100%);
    border-color: var(--accent-yellow-bright);
    grid-column: span 1;
}

.tool-chip.more-to-come-chip {
    background: linear-gradient(135deg, rgba(229, 46, 46, 0.05) 0%, rgba(244, 232, 105, 0.12) 100%);
    border: 1.5px dashed rgba(229, 46, 46, 0.4);
}

.tool-chip.more-to-come-chip .tool-name {
    color: var(--brand-red);
    font-weight: 800;
}

.tool-chip.more-to-come-chip:hover {
    background: rgba(229, 46, 46, 0.12);
    border-color: var(--brand-red);
    border-style: solid;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(229, 46, 46, 0.2);
}

.tool-icon {
    font-size: 1.4rem;
}

.tool-name {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: #1E293B;
}

/* Slogan (Aligned Left) */
.ds-slogan-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

.slogan-single-line {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A1D20;
    line-height: 1.2;
    text-align: left;
}

/* Animated Ginger Slices (DS Tools Bottom Right - Overflowing Out) */
.bottom-right-ginger-container {
    position: absolute;
    bottom: -85px;
    right: -35px;
    z-index: 20;
    width: 270px;
    height: 250px;
    cursor: pointer;
    pointer-events: auto;
}

.bottom-right-ginger-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.22));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bottom-right-ginger-container:hover .bottom-right-ginger-img {
    transform: scale(1.15) rotate(10deg) translateY(-14px);
    filter: drop-shadow(0 25px 45px rgba(229, 46, 46, 0.4));
    animation: gingerSliceFloat 0.8s ease-in-out infinite alternate;
}

@keyframes gingerSliceFloat {
    0% { transform: scale(1.15) rotate(8deg) translateY(14px); }
    100% { transform: scale(1.2) rotate(14deg) translateY(18px); }
}

.red-accent {
    color: var(--brand-red);
}

.floating-flower-accent {
    position: absolute;
    bottom: -15px;
    left: -20px;
    width: 75px;
    height: 75px;
    pointer-events: none;
    animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(10deg); }
}

/* ==========================================================================
   Section 3: About The Portal (Frosted Pastel Cards)
   ========================================================================== */

.about-section {
    margin-top: 24px;
}

.section-title-box {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 36px auto;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-lead {
    font-size: 1.25rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.5;
}

.highlight-red {
    color: var(--brand-red);
    font-weight: 700;
}

/* 3 Glassmorphic Pastel Feature Cards Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.1);
}

.card-pink {
    background: var(--pastel-pink);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(240, 180, 230, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.card-blue {
    background: var(--pastel-blue);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(180, 220, 250, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.card-green {
    background: var(--pastel-green);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 32px rgba(185, 240, 205, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.card-header-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tag-icon {
    font-size: 1.3rem;
}

.card-header-tag h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
}

.card-body-text {
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.6;
    font-family: 'Space Mono', monospace;
}

/* Glassmorphic Footer */
.glass-footer {
    margin-top: 48px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-top: 1.5px solid rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 16px 40px -10px rgba(180, 160, 90, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.slogan-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background: rgba(255, 248, 220, 0.8); */
    /* border: 1px solid rgba(244, 232, 105, 0.8); */
    /* border-top: 1px solid rgba(255, 255, 255, 0.95); */
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.flag-emoji {
    font-size: 1.4rem;
}

.national-slogan {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: 0.8px;
}

.footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Modal & Toast (Ultra Glassmorphism)
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.modal-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    width: 90%;
    max-width: 540px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    padding: 36px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25), inset 0 1px 2px #FFF;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.modal-icon {
    font-size: 2rem;
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--brand-red);
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.module-feature-list {
    background: rgba(244, 238, 205, 0.3);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.module-feature-list h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #1E293B;
}

.module-feature-list ul {
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-badge-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #854D0E;
    background: #FEF08A;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 10px;
}

.primary-btn {
    width: 100%;
    background: var(--brand-red);
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1E293B;
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 200;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    .main-title-dominant {
        font-size: 2.8rem;
    }
    .hero-card-dominant {
        padding: 32px 24px;
    }
}
