/* ==========================================================================
   Si Molah - Premium Coming Soon Landing Page Stylesheet
   Design Aesthetic: Bright & Light Theme (Green & White Combination),
                     Animated Gradients, Glassmorphism, Micro-animations
   ========================================================================== */

:root {
    /* Curated HSL Light Green & White Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f4fbf7;
    --bg-tertiary: #eaf8f0;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-glass: rgba(16, 185, 129, 0.18);
    --border-hover: rgba(5, 150, 105, 0.45);
    
    /* Brand Accents - Emerald / Mint / Teal / Deep Forest Green */
    --accent-indigo: #059669; /* Mapped to Mint Green for consistency */
    --accent-indigo-hover: #047857;
    --accent-teal: #0d9488;
    --accent-cyan: #0284c7;
    --accent-emerald: #10b981;
    --accent-amber: #d97706;
    --accent-violet: #6366f1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
    --gradient-glow: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(13, 148, 136, 0.3) 100%);
    --gradient-text: linear-gradient(90deg, #047857 0%, #0d9488 50%, #10b981 100%);
    --gradient-card: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Text Colors */
    --text-main: #0f291e;
    --text-muted: #334155;
    --text-dim: #64748b;
    
    /* Shadows */
    --shadow-glass: 0 8px 32px 0 rgba(16, 185, 129, 0.12);
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(5, 150, 105, 0.15);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 76px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
    height: auto;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: light;
}

/* Animated Gradient Background */
body {
    font-family: var(--font-body);
    background: linear-gradient(-45deg, #ffffff, #f0fdf4, #e6fcf5, #f4fbf7, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 16s ease infinite;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Utility Gradients & Badges */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 16px; }

/* Floating Bright Green/Teal Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.45;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    background: #a7f3d0; /* Soft emerald */
    top: -100px;
    left: -150px;
}

.bg-orb-2 {
    width: 450px;
    height: 450px;
    background: #99f6e4; /* Soft mint teal */
    top: 40%;
    right: -100px;
    animation-duration: 22s;
    animation-direction: alternate-reverse;
}

.bg-orb-3 {
    width: 600px;
    height: 600px;
    background: #bbf7d0; /* Soft spring green */
    bottom: -150px;
    left: 20%;
    opacity: 0.35;
    animation-duration: 26s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(1.1); }
    100% { transform: translate(-40px, 60px) scale(0.95); }
}

/* ==========================================================================
   Header / Navigation Bar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulseIcon 3s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Branding Image Styles */
.brand-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.3));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-icon-img {
    transform: scale(1.1) rotate(-5deg);
}

.hero-branding-showcase {
    position: relative;
    margin: 10px auto 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.branding-glow-backdrop {
    position: absolute;
    width: 360px;
    height: 140px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.35) 0%, rgba(5, 150, 105, 0.1) 50%, transparent 70%);
    filter: blur(28px);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-main-banner {
    max-width: 440px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(5, 150, 105, 0.22));
    animation: floatBanner 6s ease-in-out infinite alternate;
}

@keyframes floatBanner {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-10px) scale(1.02); }
}

.about-logo-badge {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 25px rgba(16, 185, 129, 0.25));
    transition: transform 0.3s ease;
}

.about-logo-badge:hover {
    transform: scale(1.05);
}

.m-logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-logo-sub {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    margin-top: 16px;
    filter: grayscale(10%) opacity(0.9);
    transition: all 0.3s ease;
}

.footer-logo-sub:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-indigo);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Buttons */
.btn-glow, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
}

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

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-glow {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-indigo);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: var(--accent-indigo);
    border: 2px solid var(--accent-indigo);
}

.btn-outline:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #047857;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 900px;
    color: #064e3b;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Countdown Timer */
.countdown-wrapper {
    margin-bottom: 56px;
    width: 100%;
    max-width: 600px;
}

.countdown-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-indigo);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.time-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    min-width: 90px;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.time-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #064e3b;
    line-height: 1;
    margin-bottom: 4px;
}

.time-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.time-separator {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-top: -16px;
}

/* Priority Access Box */
.priority-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.12), 0 0 30px rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.priority-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.priority-header {
    margin-bottom: 24px;
}

.priority-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #064e3b;
}

.priority-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    text-align: left;
}

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

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input, .input-group select {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    background: #fcfefe;
}

.input-group select {
    cursor: pointer;
}

.btn-submit-glow {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn-submit-glow:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Stats Highlight Section
   ========================================================================== */
.stats-section {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.18), 0 0 20px rgba(16, 185, 129, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-indigo);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-indigo);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #064e3b;
}

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

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f291e;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-checklists {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.check-item strong {
    color: #064e3b;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.check-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Visual Glow Code Card in Bright Mode */
.visual-card-glow {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.15), 0 0 40px rgba(16, 185, 129, 0.1);
    overflow: hidden;
    position: relative;
}

.window-header {
    background: #f8fdfa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.18);
}

.win-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.win-dot.red { background: #ef4444; }
.win-dot.yellow { background: #f59e0b; }
.win-dot.green { background: #10b981; }

.win-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-left: 8px;
    font-weight: 600;
}

.code-preview {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
    overflow-x: auto;
}

.c-key { color: #047857; font-weight: 700; }
.c-str { color: #0d9488; }
.c-num { color: #d97706; }
.c-bool { color: #6366f1; font-weight: 700; }

.visual-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    animation: floatBadge 3s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* ==========================================================================
   Features Grid Section
   ========================================================================== */
.features-section {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15), 0 0 25px rgba(16, 185, 129, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feat-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feat-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feat-icon-box svg {
    width: 28px;
    height: 28px;
}

.feat-icon-box.indigo { background: rgba(5, 150, 105, 0.12); color: #047857; border: 1px solid rgba(5, 150, 105, 0.3); }
.feat-icon-box.teal { background: rgba(13, 148, 136, 0.12); color: #0d9488; border: 1px solid rgba(13, 148, 136, 0.3); }
.feat-icon-box.cyan { background: rgba(2, 132, 199, 0.12); color: #0284c7; border: 1px solid rgba(2, 132, 199, 0.3); }
.feat-icon-box.amber { background: rgba(217, 119, 6, 0.12); color: #d97706; border: 1px solid rgba(217, 119, 6, 0.3); }
.feat-icon-box.emerald { background: rgba(16, 185, 129, 0.12); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.feat-icon-box.violet { background: rgba(99, 102, 241, 0.12); color: #6366f1; border: 1px solid rgba(99, 102, 241, 0.3); }

.feat-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-indigo);
    margin-bottom: 8px;
}

.feat-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 12px;
}

.feat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Preview UI Showcase Section
   ========================================================================== */
.preview-section {
    padding: 80px 0 100px;
}

.preview-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.p-tab {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-tab:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #064e3b;
}

.p-tab.active {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.preview-content-box {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(5, 150, 105, 0.15), 0 0 40px rgba(16, 185, 129, 0.1);
    overflow: hidden;
}

.p-screen {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.p-screen.active {
    display: block;
}

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

.mockup-header {
    background: #f4fbf7;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.18);
}

.m-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.m-btn.red { background: #ef4444; }
.m-btn.yellow { background: #f59e0b; }
.m-btn.green { background: #10b981; }

.m-url {
    background: #eaf8f0;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-family: monospace;
    font-size: 0.8rem;
    color: #047857;
    margin: 0 auto;
    font-weight: 600;
}

.mockup-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 440px;
    background: #ffffff;
}

.mockup-body.m-center-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.m-sidebar {
    background: #f8fdfa;
    border-right: 1px solid rgba(16, 185, 129, 0.18);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #064e3b;
    margin-bottom: 16px;
    padding-left: 8px;
}

.m-menu {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease;
}

.m-menu.active {
    background: var(--gradient-primary);
    color: #ffffff;
}

.m-main {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge-status {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.m-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.m-card {
    background: #f4fbf7;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
}

.m-card small {
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.m-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #064e3b;
    margin: 4px 0;
}

.m-card span {
    font-size: 0.75rem;
    font-weight: 700;
}

.text-green { color: #059669; }
.text-blue { color: #0284c7; }

.m-table-preview {
    background: #f8fdfa;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
}

.m-table-title {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #064e3b;
}

.m-row-header {
    display: grid;
    grid-template-columns: 80px 180px 1fr 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    padding: 8px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.m-row {
    display: grid;
    grid-template-columns: 80px 180px 1fr 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    align-items: center;
}

.tag-ok {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
}

/* ==========================================================================
   Roadmap Section
   ========================================================================== */
.roadmap-section {
    padding: 80px 0;
    position: relative;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #0d9488 60%, rgba(16, 185, 129, 0.1) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 1;
    color: var(--text-dim);
}

.timeline-item.completed .tl-dot {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.timeline-item.active .tl-dot {
    background: var(--gradient-primary);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.6);
}

.tl-content {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.05);
}

.timeline-item.active .tl-content {
    border-color: rgba(5, 150, 105, 0.5);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.12), 0 0 20px rgba(16, 185, 129, 0.1);
}

.tl-date {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-indigo);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.tl-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 8px;
}

.tl-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
    padding: 80px 0 100px;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acc-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.05);
}

.acc-item.active {
    border-color: rgba(5, 150, 105, 0.5);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.12);
}

.acc-header {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #064e3b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s ease;
}

.acc-header:hover {
    color: var(--accent-indigo);
}

.acc-icon {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-indigo);
    transition: transform 0.3s ease;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    color: #ef4444;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.acc-item.active .acc-body {
    padding: 0 24px 20px;
}

.acc-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   CTA Bottom Section
   ========================================================================== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.12);
}

.cta-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #f8fdfa;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 80px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 360px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #047857;
    font-weight: 600;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #064e3b;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--text-dim);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* ==========================================================================
   Toast Notification Container
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 420px;
    animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.toast.success { border-left: 4px solid var(--accent-emerald); }
.toast.error { border-left: 4px solid #ef4444; }

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: #064e3b;
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(10px); }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.2rem; }
    .countdown-grid { gap: 8px; }
    .time-box { min-width: 70px; padding: 12px 10px; }
    .time-num { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .mockup-body { grid-template-columns: 1fr; }
    .m-sidebar { display: none; }
    .m-cards { grid-template-columns: 1fr; }
    .m-row-header, .m-row { grid-template-columns: 60px 1fr 80px; }
    .m-row-header span:nth-child(2), .m-row span:nth-child(2) { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .btn-glow, .btn-outline { width: 100%; text-align: center; }
}
