/* Mollet IT — shared product landing-page styles
   Used by /mitsign /mitbackup /mitmonitor (matches /mitdrive look) */

:root {
    --primary: #0a1628;
    --primary-light: #132140;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --success: #10b981;
    --warning: #f59e0b;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.03);
    --gradient-start: #0a1628;
    --gradient-end: #1e3a5f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.brand {
    display: flex; align-items: center; gap: 0.75rem;
    color: var(--white); text-decoration: none;
    font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em;
}
.brand .brand-dot {
    width: 28px; height: 28px; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-weight: 500; font-size: 0.9rem; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); text-decoration: none;
    font-weight: 500; font-size: 0.9rem; transition: color 0.2s;
}
.nav-back:hover { color: var(--accent); }

/* Hero */
.hero {
    min-height: 90vh; display: flex; align-items: center;
    padding: 9rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 80%; height: 150%;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; line-height: 1.1; margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--accent); font-weight: 600; margin-bottom: 1.5rem;
}
.hero-description {
    font-size: 1.1rem; color: var(--text-muted);
    margin-bottom: 2rem; max-width: 540px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-graphic {
    width: 100%; height: 380px;
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a2e 100%);
    border-radius: 24px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-graphic::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero-graphic .product-emblem {
    width: 180px; height: 180px; border-radius: 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 30px 60px -15px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative; z-index: 1;
}
.hero-graphic .product-emblem svg {
    width: 96px; height: 96px;
    stroke: var(--white); stroke-width: 1.8; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2rem; border-radius: 12px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-primary {
    background: var(--accent); color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
    background: var(--accent-hover); transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-secondary {
    background: var(--card-bg); color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08); border-color: var(--accent);
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Section header */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-label {
    display: inline-block; padding: 0.5rem 1rem;
    background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--accent); margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.01em; }
.section-description { color: var(--text-muted); font-size: 1.05rem; }

/* Features grid */
.features { padding: 6rem 2rem; position: relative; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    max-width: 1200px; margin: 0 auto;
}
.feature-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 2rem; transition: all 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-5px); border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.feature-icon svg { width: 28px; height: 28px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Use cases */
.use-cases { padding: 6rem 2rem; background: rgba(0,0,0,0.2); }
.use-cases-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
}
.use-case {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem; text-align: center;
    transition: all 0.25s ease;
}
.use-case:hover { border-color: var(--success); background: rgba(16,185,129,0.05); }
.use-case-icon {
    width: 48px; height: 48px;
    background: rgba(16,185,129,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}
.use-case-icon svg { width: 24px; height: 24px; stroke: var(--success); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.use-case h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.use-case p { color: var(--text-muted); font-size: 0.85rem; }

/* Tech specs */
.tech-specs { padding: 6rem 2rem; }
.specs-container { max-width: 900px; margin: 0 auto; }
.specs-table {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
}
.spec-row {
    display: grid; grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
    padding: 1.25rem 1.5rem;
    background: rgba(59,130,246,0.05);
    font-weight: 600;
    display: flex; align-items: center; gap: 0.75rem;
}
.spec-label svg { width: 20px; height: 20px; stroke: var(--accent); stroke-width: 2; fill: none; }
.spec-value { padding: 1.25rem 1.5rem; color: var(--text-muted); }

/* CTA */
.cta { padding: 6rem 2rem; background: rgba(0,0,0,0.2); }
.cta-container {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border: 1px solid var(--border); border-radius: 24px;
    padding: 3.5rem 3rem; text-align: center;
    position: relative; overflow: hidden;
}
.cta-container::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}
.cta-container > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 700; margin-bottom: 1rem; }
.cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
    padding: 3rem 2rem 2rem; border-top: 1px solid var(--border);
    text-align: center; color: var(--text-muted); font-size: 0.9rem;
}
.site-footer a { color: var(--accent); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { max-width: 400px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .spec-row { grid-template-columns: 1fr; }
    .spec-label { padding-bottom: 0.5rem; }
    .spec-value { padding-top: 0.5rem; }
    .nav-links { display: none; }
}
@media (max-width: 560px) {
    .features-grid, .use-cases-grid { grid-template-columns: 1fr; }
    .hero { padding: 8rem 1.25rem 3rem; }
    .features, .use-cases, .tech-specs, .cta { padding: 4rem 1.25rem; }
    .cta-container { padding: 2.5rem 1.5rem; }
    .header { padding: 0.75rem 1.25rem; }
}
