*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --mono: 'JetBrains Mono', 'Fira Code', monospace; --black: #000000; --white: #ffffff; --blue-600: #4f46e5; --purple-600: #7c3aed; --indigo-600: #4338ca; --cyan-500: #06b6d4; --red: #ef4444; --green: #10b981; --yellow: #f59e0b; --text: rgba(255,255,255,0.9); --text-muted: rgba(255,255,255,0.6); --text-dim: rgba(255,255,255,0.35); --glass-bg: rgba(255,255,255,0.05); --glass-border: rgba(255,255,255,0.1); --glass-hover-bg: rgba(255,255,255,0.1); --glass-hover-border: rgba(255,255,255,0.2); --glass-shadow: 0 8px 32px rgba(0,0,0,0.36); --radius: 1.5rem; --radius-sm: 0.75rem; --radius-full: 9999px; --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--black); color: var(--text); line-height: 1.6; overflow-x: hidden; min-height: 100vh; }
body.nav-open { overflow: hidden; }
::selection { background: rgba(255,255,255,0.2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
.blob-container { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); mix-blend-mode: screen; animation: blob 7s infinite; }
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(79, 70, 229, 0.2); }
.blob-2 { top: 20%; right: -10%; width: 40vw; height: 40vw; background: rgba(124, 58, 237, 0.2); animation-delay: 2s; }
.blob-3 { bottom: -10%; left: 20%; width: 45vw; height: 45vw; background: rgba(67, 56, 202, 0.2); animation-delay: 4s; }
@keyframes blob { 0%   { transform: translate(0, 0) scale(1); } 33%  { transform: translate(30px, -50px) scale(1.1); } 66%  { transform: translate(-20px, 20px) scale(0.9); } 100% { transform: translate(0, 0) scale(1); } }
.glass { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: var(--glass-shadow); }
.text-gradient { background: linear-gradient(135deg, #818cf8, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-full); font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap; text-decoration: none; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: scale(1.05); }
.btn-glass { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 24px; transition: padding var(--transition); }
.nav.nav-scrolled { padding: 12px 24px; }
.nav-pill { max-width: 1200px; margin: 0 auto; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: all var(--transition); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.nav-logo-icon { width: 26px; height: 26px; color: #818cf8; }
.logo-accent { color: var(--cyan-500); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; gap: 12px; }
.nav-actions .btn { padding: 10px 20px; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 1px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hero { position: relative; z-index: 1; display: flex; align-items: center; padding: 100px 0 40px; text-align: center; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 500; color: var(--text-muted); margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }
.hero-title { font-size: clamp(3.5rem, 8vw, 8rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-size: 1.8rem; font-weight: 800; font-family: var(--mono); color: var(--white); margin-bottom: 4px; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; max-width: 180px; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }
.section { position: relative; z-index: 1; padding: 48px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-tag { display: inline-block; padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 10px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.card-grid { display: grid; gap: 14px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px 20px; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: var(--glass-shadow); transition: all var(--transition); opacity: 0; transform: translateY(20px); }
.glass-card.revealed { opacity: 1; transform: translateY(0); }
.glass-card-feature:hover { border-color: var(--glass-hover-border); background: var(--glass-hover-bg); transform: translateY(-4px); }
.card-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: rgba(255,255,255,0.05); transition: background var(--transition); }
.glass-card-feature:hover .card-icon { background: rgba(255,255,255,0.1); }
.icon-red { color: var(--red); }
.icon-blue { color: #818cf8; }
.icon-purple { color: #a78bfa; }
.icon-cyan { color: var(--cyan-500); }
.icon-indigo { color: #6366f1; }
.glass-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.glass-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 0.85rem; font-weight: 500; color: var(--text-dim); transition: color var(--transition); }
.card-link:hover { color: var(--white); }
.card-link span { transition: transform var(--transition); }
.card-link:hover span { transform: translateX(4px); }
.card-badge { display: inline-block; margin-top: 10px; padding: 4px 12px; border-radius: var(--radius-full); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); font-size: 0.72rem; font-weight: 500; font-family: var(--mono); color: var(--text-dim); }
.terminal-card { padding: 0; overflow: hidden; border-radius: var(--radius); }
.terminal-header { display: flex; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--glass-border); }
.terminal-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.terminal-title { margin-left: auto; font-size: 0.75rem; color: var(--text-dim); font-family: var(--mono); }
.terminal-body { padding: 20px; font-family: var(--mono); font-size: 0.8rem; line-height: 2.2; }
.terminal-line { display: flex; gap: 12px; flex-wrap: wrap; }
.t-time { color: var(--text-dim); min-width: 60px; }
.t-source { min-width: 100px; font-weight: 600; }
.src-snow { color: #818cf8; }
.src-calc { color: var(--cyan-500); }
.src-comp { color: #a78bfa; }
.src-alert { color: var(--red); }
.src-aws { color: #f59e0b; }
.src-graph { color: var(--green); }
.src-ai { color: #f472b6; }
.t-event { color: var(--text-muted); }
.t-alert { color: var(--red); font-weight: 600; }
.compliance-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; background: linear-gradient(135deg, #818cf8, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cert-bar { margin-top: 24px; border-radius: var(--radius); padding: 16px 24px; text-align: center; }
.cert-bar-title { font-size: 0.78rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.cert-items { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cert-item { padding: 8px 18px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; font-weight: 600; color: var(--text-dim); transition: all var(--transition); }
.cert-item.active { border-color: rgba(16,185,129,0.3); color: var(--green); background: rgba(16,185,129,0.06); }
.table-card { padding: 0; overflow: hidden; }
.table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-table th, .comparison-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-table th { font-weight: 700; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; background: rgba(255,255,255,0.03); }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 600; }
.col-highlight { background: rgba(99,102,241,0.06); }
.comparison-table th.col-highlight { color: #818cf8; }
.check { color: var(--green); font-weight: 700; }
.x { color: var(--text-dim); }
.partial { color: var(--yellow); font-size: 0.8rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; position: relative; }
.pricing-featured { border-color: rgba(129,140,248,0.3); background: linear-gradient(180deg, rgba(99,102,241,0.1) 0%, rgba(255,255,255,0.03) 40%); }
.pricing-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 18px; border-radius: var(--radius-full); background: var(--white); color: var(--black); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.pricing-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.pricing-price { font-size: 1.5rem; font-weight: 800; font-family: var(--mono); background: linear-gradient(135deg, #818cf8, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.pricing-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 16px; }
.pricing-features li { padding: 8px 0 8px 24px; position: relative; font-size: 0.88rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.section-cta { text-align: center; }
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-content > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.demo-form { text-align: left; border-radius: var(--radius); padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font); font-size: 0.92rem; transition: all var(--transition); outline: none; }
.form-input:focus { border-color: rgba(129,140,248,0.5); box-shadow: 0 0 0 3px rgba(129,140,248,0.15); }
.form-input::placeholder { color: var(--text-dim); }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-dim); margin-top: 14px; }
.footer { position: relative; z-index: 1; padding: 40px 0 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-tagline { color: var(--text-dim); font-size: 0.88rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.88rem; padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.82rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-dim); }
.footer-legal a:hover { color: var(--text-muted); }
@media (max-width: 1024px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } .cols-3 { grid-template-columns: repeat(2, 1fr); } .pricing-grid { grid-template-columns: repeat(2, 1fr); } .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .nav { padding: 12px 16px; } .nav-pill { padding: 10px 16px; } .nav-links { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(24px); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 999; } .nav-links.open { display: flex; } .nav-links a { font-size: 1.3rem; color: var(--white); } .nav-actions { display: none; } .nav-toggle { display: flex; z-index: 1001; } .hero { padding: 80px 0 32px; min-height: auto; } .hero-title { font-size: clamp(2.5rem, 12vw, 4.5rem); } .cols-4, .cols-3 { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } .form-row { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } .hero-stats { flex-direction: column; gap: 20px; } .hero-stat-divider { width: 48px; height: 1px; } }
@media (max-width: 480px) { .hero-title { font-size: 2.5rem; } .section { padding: 36px 0; } }
@media print { .blob-container, .nav { display: none; } body { background: #fff; color: #000; } .glass-card { border: 1px solid #ddd; background: #f9f9f9; backdrop-filter: none; } .text-gradient, .hero-title { -webkit-text-fill-color: #333; } }
