/* ==========================================================================
   SINDY AI CAMPUS - COMING SOON
   Ultra-Premium Creative Stylesheet
   ========================================================================== */

:root {
    --bg-dark: #020204;
    --bg-card: rgba(10, 10, 16, 0.35);
    --bg-card-hover: rgba(16, 16, 28, 0.55);
    --orange: #FF8E00;
    --purple: #9F00FF;
    --cyan: #00E5FF;
    --pink: #FF007F;
    --white: #FFFFFF;
    
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #4B5563;
    
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --glow-orange: rgba(255, 142, 0, 0.2);
    --glow-purple: rgba(159, 0, 255, 0.2);
    --glow-cyan: rgba(0, 229, 255, 0.2);
    
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --font-outfit: 'Outfit', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;
}

/* ==========================================================================
   1. Base Reset & Layout
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-outfit);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Background Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.75;
}

/* ==========================================================================
   2. Typography & Gradients
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-grotesk);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00E5FF 0%, #0077FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #FFB800 0%, #FF5C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==========================================================================
   3. Header Navigation
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.2rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    background: rgba(2, 2, 4, 0.45);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 142, 0, 0.15));
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--orange);
}

.status-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-primary);
}

/* ==========================================================================
   4. Hero Split Section
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 12rem 2rem 6rem;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left text side */
.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

/* Dynamic Word Cycler */
.word-cycler-container {
    display: inline-block;
    position: relative;
    height: 1.15em;
    vertical-align: bottom;
    overflow: hidden;
    width: 250px;
}

.word-cycler {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.18rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

/* Countdown Dashboard */
.countdown-dashboard {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    padding: 0.8rem 1.8rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeInUp 1.2s ease-out;
}

.countdown-dash-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-val {
    font-family: var(--font-grotesk);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-lbl {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.countdown-dash-divider {
    font-family: var(--font-grotesk);
    font-size: 1.6rem;
    color: var(--purple);
    font-weight: 300;
    opacity: 0.5;
}

/* Background glows */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.orange-glow {
    top: 5%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: var(--orange);
    animation: floatGlow 20s infinite ease-in-out alternate;
}

.purple-glow {
    bottom: 5%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: var(--purple);
    animation: floatGlow 24s infinite ease-in-out alternate-reverse;
}

/* ==========================================================================
   5. Glass Student ID Card Waitlist Form
   ========================================================================== */

.hero-card-side {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.student-id-card-wrapper {
    width: 100%;
    max-width: 440px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.student-id-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2.2rem;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: var(--transition);
}

.student-id-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 80px rgba(159, 0, 255, 0.15), 0 0 40px rgba(0, 229, 255, 0.08);
}

/* Header bar */
.card-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    transform: translateZ(20px);
}

.card-status-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 142, 0, 0.1);
    color: var(--orange);
    border-radius: 5px;
    font-size: 0.65rem;
    border: 1px solid rgba(255, 142, 0, 0.2);
}

.live-dot {
    width: 5px;
    height: 5px;
    background-color: var(--orange);
    border-radius: 50%;
}

/* Profile photo box */
.card-profile-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    transform: translateZ(30px);
}

.student-photo-box {
    width: 100px;
    height: 110px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 142, 0, 0.25);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-silhouette {
    font-size: 3.2rem;
    color: rgba(255, 255, 255, 0.15);
}

/* Scanning effect */
.photo-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    box-shadow: 0 0 8px var(--orange);
    animation: scannerLine 3s infinite ease-in-out;
}

.student-meta-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta-field {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.1rem;
}

/* Forms inside card */
.waitlist-card-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateZ(40px);
}

.glass-input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-card {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.05rem;
    z-index: 2;
    transition: var(--transition-fast);
}

.waitlist-card-form input {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 2.8rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.waitlist-card-form input::placeholder {
    color: var(--text-muted);
}

.input-scanner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0);
    pointer-events: none;
    transition: var(--transition);
}

.waitlist-card-form input:focus {
    border-color: var(--cyan);
}

.waitlist-card-form input:focus ~ .input-scanner-glow {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.12);
}

.waitlist-card-form input:focus ~ .input-icon-card {
    color: var(--cyan);
}

/* Form Action */
.btn-card-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-grotesk);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(159, 0, 255, 0.2);
}

.btn-card-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(159, 0, 255, 0.35);
}

.submit-fingerprint {
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-card-submit:hover .submit-fingerprint {
    transform: scale(1.1);
    color: var(--cyan);
}

/* Card footer */
.card-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    transform: translateZ(20px);
}

.counter-box i {
    color: var(--orange);
}

/* ==========================================================================
   6. Immersive Horizontal Scroll-Snapping Showcase Track
   ========================================================================== */

.horizontal-scroll-container {
    height: 300vh; /* 3 slides = 300vh scroll depth */
    position: relative;
    background: #020204;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-track {
    display: flex;
    height: 100%;
    width: 300vw; /* 3 slides width */
    will-change: transform;
}

.horizontal-slide {
    width: 100vw;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Heavy scale, blur slide-bg parallax */
.slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28) blur(1px);
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(0.1, 0.8, 0.2, 1);
    z-index: 0;
}

/* Center Immersive Card */
.slide-card {
    background: rgba(8, 8, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 3.5rem;
    max-width: 620px;
    width: 90%;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 1;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: var(--transition-slow);
}

/* Active slide transitions */
.horizontal-slide.active .slide-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.horizontal-slide.active .slide-bg-overlay {
    transform: scale(1);
}

.slide-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    line-height: 1.1;
}

.slide-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.slide-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.slide-stats span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.slide-stats span i {
    color: var(--cyan);
}

/* ==========================================================================
   7. Bento Grid Features Section
   ========================================================================== */

.features-section {
    padding: 10rem 2rem 5rem;
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.bento-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}

/* Specific Cards Glow */
.card-glow-purple:hover {
    border-color: rgba(159, 0, 255, 0.4);
    box-shadow: 0 10px 40px rgba(159, 0, 255, 0.15);
}

.card-glow-cyan:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.15);
}

.card-glow-orange:hover {
    border-color: rgba(255, 142, 0, 0.4);
    box-shadow: 0 10px 40px rgba(255, 142, 0, 0.15);
}

.card-glow-white:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

/* Bento Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: space-between;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 2;
    justify-content: space-between;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Bento Content */
.bento-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.bg-purple-glow {
    background: rgba(159, 0, 255, 0.15);
    color: #C06BFF;
    border: 1px solid rgba(159, 0, 255, 0.3);
}

.bg-cyan-glow {
    background: rgba(0, 229, 255, 0.15);
    color: #6BFAFF;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.bg-orange-glow {
    background: rgba(255, 142, 0, 0.15);
    color: #FFB352;
    border: 1px solid rgba(255, 142, 0, 0.3);
}

.bg-white-glow {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.tag-purple { background: rgba(159, 0, 255, 0.1); color: #C06BFF; }
.tag-cyan { background: rgba(0, 229, 255, 0.1); color: #6BFAFF; }
.tag-orange { background: rgba(255, 142, 0, 0.1); color: #FFB352; }
.tag-white { background: rgba(255, 255, 255, 0.05); color: #FFFFFF; }

.bento-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.bento-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   8. Bento Mini Previews
   ========================================================================== */

.mini-preview {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    font-family: var(--font-grotesk);
    z-index: 2;
    position: relative;
}

/* AI Chat Preview */
.ai-chat-preview {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chat-bubble {
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 85%;
    line-height: 1.4;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.ai {
    background: rgba(159, 0, 255, 0.1);
    color: #E2BCFF;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    border: 1px solid rgba(159, 0, 255, 0.2);
}

.typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 10px;
}

.typing-indicator::after {
    content: '...';
    font-weight: bold;
    animation: typing 1.5s infinite step-start;
}

.ai-text {
    display: none;
}

/* Code Preview */
.code-preview {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #E2E8F0;
    line-height: 1.5;
}

.code-line .keyword { color: #F43F5E; }
.code-line .func { color: #38BDF8; }
.code-line.indent { padding-left: 1.2rem; }

.debug-alert {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

/* Community Preview */
.community-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.ai-avatar {
    background-color: var(--orange) !important;
    color: var(--white);
    box-shadow: 0 0 10px var(--orange);
}

.avatar-connector {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.live-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

/* ==========================================================================
   9. Statistics Section
   ========================================================================== */

.stats-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    z-index: 1;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-num {
    font-family: var(--font-grotesk);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   10. Footer Section
   ========================================================================== */

.footer {
    padding: 6rem 2rem 3rem;
    background-color: #020204;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-footer-img {
    height: 42px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: grayscale(0.5) opacity(0.8);
    transition: var(--transition);
}

.footer-logo:hover .logo-footer-img {
    filter: grayscale(0) opacity(1);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   11. Toast Notifications
   ========================================================================== */

#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-family: var(--font-outfit);
    font-size: 0.95rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: var(--transition);
}

.toast.success {
    border-left: 3px solid #10B981;
}

.toast.success i {
    color: #10B981;
}

.toast.error {
    border-left: 3px solid #EF4444;
}

.toast.error i {
    color: #EF4444;
}

/* ==========================================================================
   12. Keyframe Animations
   ========================================================================== */

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-35px) scale(1.08); }
}

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

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

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes typing {
    0%, 100% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scannerLine {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

/* ==========================================================================
   13. Responsive Adaptations
   ========================================================================== */

@media (max-width: 1000px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-text-side {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-large, .bento-medium, .bento-small {
        grid-column: span 1;
        grid-row: span 1;
        justify-content: flex-end;
    }
    
    .bento-icon-box {
        margin-bottom: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    
    .student-id-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .card-profile-section {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .student-photo-box {
        width: 80px;
        height: 90px;
    }
    
    .student-silhouette {
        font-size: 2.6rem;
    }
    
    .card-header-bar {
        margin-bottom: 1.5rem;
    }
    
    .countdown-dashboard {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .slide-card {
        padding: 2rem 1.5rem;
    }
}
