/* ==========================================================================
   SmartPottuvil — Premium Dark SaaS Design System (2026 Edition)
   ========================================================================== */

:root {
    /* Theme Color Palette */
    --color-bg: #030712;
    --color-surface: #111827;
    --color-surface-hover: #1f2937;
    --color-surface-glass: rgba(17, 24, 39, 0.65);
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(59, 130, 246, 0.4);

    --color-primary: #3B82F6;
    --color-primary-hover: #2563EB;
    --color-primary-glow: rgba(59, 130, 246, 0.35);

    --color-accent: #06B6D4;
    --color-accent-glow: rgba(6, 182, 212, 0.35);

    --color-success: #22C55E;
    --color-success-glow: rgba(34, 197, 94, 0.35);

    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-text-dim: #64748B;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Layout & Shadows */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.25);
    --shadow-cyan: 0 0 30px rgba(6, 182, 212, 0.25);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.text-accent {
    color: var(--color-accent);
}

.text-primary {
    color: var(--color-primary);
}

.text-success {
    color: var(--color-success);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphism Surface Base */
.glass-card {
    background: var(--color-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-glow);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Ambient Visual Effects */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
}

.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3B82F6 0%, rgba(59, 130, 246, 0) 70%);
    top: -100px;
    left: 10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #06B6D4 0%, rgba(6, 182, 212, 0) 70%);
    top: 30%;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #8B5CF6 0%, rgba(139, 92, 246, 0) 70%);
    bottom: 5%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, 40px) scale(1.15);
    }

    100% {
        transform: translate(-40px, 80px) scale(0.9);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.05) 40%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-glass);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.logo-icon-wrapper {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-ring-spin {
    transform-origin: center;
    animation: spinRing 12s linear infinite;
}

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2563EB 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #4F46E5 0%, var(--color-primary) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border-color: var(--color-border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-glass {
    background: rgba(17, 24, 39, 0.7);
    color: var(--color-text-main);
    border-color: var(--color-border-glass);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
}

.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-button:hover::after {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 4rem 0;
    position: relative;
    z-index: 10;
}

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

/* Status Badges */
.badge-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    backdrop-filter: blur(10px);
}

.launch-badge {
    border-color: rgba(34, 197, 94, 0.3);
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-success);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.progress-badge {
    border-color: rgba(6, 182, 212, 0.3);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.15;
    max-width: 900px;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 720px;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.75rem;
    max-width: 780px;
    text-align: left;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.sparkle-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-description-card p {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero-cta-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Countdown Block */
.countdown-block {
    width: 100%;
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.countdown-header {
    margin-bottom: 1.5rem;
}

.rocket-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.25rem;
}

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

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

.timer-card {
    flex: 1;
    min-width: 110px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.75);
    position: relative;
    overflow: hidden;
}

.timer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.timer-card.highlight-sec::before {
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.number-wrapper {
    overflow: hidden;
    height: 3.2rem;
    display: flex;
    align-items: center;
}

.timer-number {
    font-family: var(--font-mono);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -1px;
    padding: 10px;
}

.timer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
    font-weight: 600;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dim);
    margin-top: -1.25rem;
    opacity: 0.6;
}

/* Category Pills Bar */
.category-pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-full);
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.category-pill svg {
    width: 15px;
    height: 15px;
    color: var(--color-accent);
}

.pill-dot {
    color: var(--color-text-dim);
    font-size: 0.8rem;
}

/* System Infrastructure Progress Meter */
.progress-meter-card {
    width: 100%;
    max-width: 680px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.meter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.meter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-main);
}

.meter-title svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.meter-val {
    font-family: var(--font-mono);
    color: var(--color-accent);
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: var(--border-radius-full);
    position: relative;
    transition: width 1.5s ease-out;
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff, 0 0 20px var(--color-accent);
    border-radius: 50%;
    opacity: 0.8;
}

.meter-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

.meter-footer span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.meter-footer svg {
    width: 13px;
    height: 13px;
    color: var(--color-success);
}

.spin {
    animation: spinIcon 2s linear infinite;
}

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

.pulse-text {
    color: var(--color-accent);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-fast);
}

.feature-link svg {
    width: 14px;
    height: 14px;
}

.feature-card:hover .feature-link {
    gap: 0.7rem;
}

/* Vision Showcase Section */
.vision-section {
    padding: 4rem 0 6rem 0;
    position: relative;
    z-index: 10;
}

.vision-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem;
    align-items: center;
    overflow: hidden;
}

.vision-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.vision-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.vision-body {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-glass);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* Visual Mockup Frame */
.mockup-frame {
    background: #090d16;
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mockup-header {
    background: #111827;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border-glass);
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #10b981;
}

.mockup-url {
    margin-left: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
    width: 100%;
}

.mockup-body {
    padding: 1.5rem;
}

.mockup-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.pill-mini {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-primary);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.mockup-banner h3 {
    font-size: 1.05rem;
    color: #fff;
}

.mockup-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.widget-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.widget-mini svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.widget-mini span {
    font-size: 0.72rem;
    color: var(--color-text-dim);
}

.widget-mini strong {
    font-size: 0.82rem;
    color: var(--color-text-main);
}

/* Subscribe Section */
.subscribe-section {
    padding: 4rem 0 6rem 0;
    position: relative;
    z-index: 10;
}

.subscribe-card {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.subscribe-glow-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.envelope-badge {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.envelope-badge svg {
    width: 26px;
    height: 26px;
    color: var(--color-accent);
}

.subscribe-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.subscribe-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
}

.subscribe-form {
    max-width: 560px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper {
    position: absolute;
    left: 1.25rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.25rem 1.1rem 3.25rem;
    background: rgba(3, 7, 18, 0.7);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-full);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-subscribe {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 1.5rem;
    border-radius: var(--border-radius-full);
}

.btn-send-icon {
    width: 16px;
    height: 16px;
}

.form-hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.form-hint svg {
    width: 13px;
    height: 13px;
}

/* Subscribe Success State */
.subscribe-success {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.success-icon-box svg {
    width: 32px;
    height: 32px;
    color: var(--color-success);
}

.subscribe-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.subscribe-success p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Site Footer */
.site-footer {
    background: rgba(3, 7, 18, 0.95);
    border-top: 1px solid var(--color-border-glass);
    padding: 4rem 0 2.5rem 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-tagline {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-main);
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--color-text-dim);
    font-size: 0.88rem;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

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

.social-icon:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-glass);
    font-size: 0.88rem;
    color: var(--color-text-dim);
}

.domain-link {
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-weight: 600;
}

.domain-link:hover {
    text-decoration: underline;
}

/* Modal Window */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-card {
    width: 100%;
    max-width: 580px;
    background: #0d1322;
    padding: 2.25rem;
    position: relative;
    border-color: rgba(59, 130, 246, 0.3);
    animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--color-text-dim);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.modal-title {
    font-size: 1.4rem;
}

.modal-body {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-body ul {
    margin-top: 0.75rem;
}

.modal-body ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
}

.modal-body ul li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Keyframe Entrance Animations */
.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-down {
    animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .vision-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 1.75rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* Can be toggled if needed or kept sleek */
    }

    .hero-section {
        padding: 3rem 0 2rem 0;
    }

    .countdown-grid {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .timer-card {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .timer-number {
        font-size: 2rem;
    }

    .timer-separator {
        display: none;
    }

    .btn-subscribe {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.85rem;
    }

    .input-group {
        flex-direction: column;
    }

    .form-input {
        padding-right: 1.25rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}