@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-dark: #0d1117;
    --bg-card: #161b22;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: #30363d;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-dark); color: var(--text-main);
    font-family: 'Inter', sans-serif; line-height: 1.6; min-height: 100vh;
    display: flex; flex-direction: column; overflow-x: hidden;
}

.bg-grid {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.3; z-index: -1; pointer-events: none;
}

header {
    border-bottom: 1px solid var(--border-color); padding: 1.25rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background-color: rgba(13, 17, 23, 0.8); backdrop-filter: blur(8px);
    position: sticky; top: 0; z-index: 100;
}

.logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 1.25rem; color: var(--text-main); text-decoration: none; letter-spacing: -0.02em; }
.logo-img { width: 36px; height: 36px; border-radius: 8px; }

.status-badge {
    display: flex; align-items: center; gap: 0.5rem; background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3); color: #f59e0b; padding: 0.35rem 0.85rem;
    border-radius: 9999px; font-size: 0.85rem; font-weight: 500; font-family: 'JetBrains Mono', monospace;
}
.status-dot { width: 8px; height: 8px; background-color: #f59e0b; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }

.hero { padding: 5rem 0 3rem 0; text-align: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.5rem; background: linear-gradient(180deg, #ffffff 0%, #9ca3af 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 750px; margin: 0 auto 2.5rem auto; font-weight: 400; }

.cta-box { max-width: 500px; margin: 0 auto; background-color: var(--bg-card); border: 1px solid var(--border-color); padding: 0.5rem; border-radius: 12px; display: flex; gap: 0.5rem; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5); }
.cta-box input { flex: 1; background: transparent; border: none; padding: 0.85rem 1rem; color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; }
.cta-box input::placeholder { color: #6b7280; }
.cta-box button { background-color: var(--accent-green); color: #000; border: none; padding: 0.85rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; }
.cta-box button:hover { opacity: 0.9; transform: translateY(-1px); }

.features { padding: 4rem 0; }
.section-title { text-align: center; font-size: 1.75rem; font-weight: 700; margin-bottom: 2.5rem; color: var(--text-main); letter-spacing: -0.02em; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem; transition: transform 0.2s ease, border-color 0.2s ease; }
.card:hover { transform: translateY(-3px); border-color: #4b5563; }
.card-icon { width: 48px; height: 48px; border-radius: 10px; background-color: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--accent-green); }
.card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-main); }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

.industries { padding: 3rem 0 5rem 0; }
.industry-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.industry-box { background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 27, 34, 0.5) 100%); border: 1px solid var(--border-color); border-radius: 12px; padding: 2.5rem; position: relative; overflow: hidden; }
.industry-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--accent-green), var(--accent-blue)); }
.industry-box h4 { font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.industry-box ul { list-style: none; margin-top: 1rem; }
.industry-box li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.95rem; }
.industry-box li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; }

footer { margin-top: auto; border-top: 1px solid var(--border-color); padding: 2rem 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; background-color: rgba(13, 17, 23, 0.9); }

@media (max-width: 640px) {
    .cta-box { flex-direction: column; background: transparent; border: none; box-shadow: none; padding: 0; }
    .cta-box input { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; }
    .cta-box button { width: 100%; }
}
