:root { --bg: #070E1F; --surface: #0F1E3C; --surface-2: #162444; --ink: #EEF2FF; --muted: #8B9CC8; --border: rgba(92,107,192,0.22); --accent: #7C3AED; --accent-2: #06B6D4; --on-accent: #FFFFFF; --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-2xl: 32px; --shadow-sm: 0 1px 3px rgba(0,0,0,0.4); --shadow-md: 0 4px 24px rgba(0,0,0,0.45); --shadow-lg: 0 12px 48px rgba(0,0,0,0.55); --container: 1180px; --space-section: clamp(4rem, 9vw, 8rem); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; } h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); } h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; } h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; } h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; } h4 { font-size: 1.1rem; font-weight: 600; } p { color: var(--muted); max-width: 65ch; } a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; } .container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; } section { padding: var(--space-section) 0; } .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius-md); font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: transform 150ms ease, box-shadow 200ms ease, background 200ms ease; text-decoration: none; } .btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; } .btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #5B21B6 100%); color: var(--on-accent); box-shadow: 0 4px 20px rgba(124,58,237,0.45); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.6); } .btn-secondary { background: rgba(255,255,255,0.07); color: var(--ink); border: 1px solid var(--border); backdrop-filter: blur(8px); } .btn-secondary:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); } .btn-cyan { background: linear-gradient(135deg, var(--accent-2) 0%, #0891B2 100%); color: #070E1F; box-shadow: 0 4px 20px rgba(6,182,212,0.4); } .btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(6,182,212,0.55); } .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; } .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,0.4); } .glass { background: rgba(15,30,60,0.55); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--border); } .tag { display: inline-block; padding: .25rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; } .tag-accent { background: rgba(124,58,237,0.18); color: #A78BFA; border: 1px solid rgba(124,58,237,0.3); } .tag-cyan { background: rgba(6,182,212,0.15); color: var(--accent-2); border: 1px solid rgba(6,182,212,0.3); } .gradient-text { background: linear-gradient(135deg, #A78BFA 0%, var(--accent-2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .section-label { font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 1rem; display: block; } .divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; margin: 1rem 0 1.5rem; } #site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.1rem 0; transition: padding 280ms ease, background 280ms ease, box-shadow 280ms ease; background: transparent; } #site-header.scrolled { padding: .65rem 0; background: rgba(7,14,31,0.82); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); box-shadow: 0 1px 0 var(--border); } #site-header .header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; } #site-header .logo { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; background: linear-gradient(135deg, #A78BFA, var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: flex; align-items: center; gap: .5rem; text-decoration: none; } #nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; } #nav-menu a { font-size: .92rem; font-weight: 500; color: var(--muted); transition: color 180ms; position: relative; padding-bottom: 2px; } #nav-menu a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; transform: scaleX(0); transform-origin: left; transition: transform 220ms ease; } #nav-menu a:hover, #nav-menu a.active { color: var(--ink); } #nav-menu a:hover::after, #nav-menu a.active::after { transform: scaleX(1); } #nav-menu a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; border-radius: 3px; } .header-cta { display: flex; align-items: center; gap: 1rem; } #nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--ink); padding: .5rem; border-radius: var(--radius-sm); cursor: pointer; line-height: 0; transition: background 150ms; } #nav-toggle:hover { background: rgba(255,255,255,0.08); } #nav-toggle:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; } @media (max-width: 900px) { #nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(7,14,31,0.97); backdrop-filter: blur(24px); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 999; } #nav-menu a { font-size: 1.5rem; } .header-cta .btn { display: none; } #nav-toggle { display: flex; align-items: center; justify-content: center; z-index: 1001; } .nav-open #nav-menu { display: flex; } .nav-open #nav-toggle { position: fixed; top: 1.1rem; right: 1.25rem; } } .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); } .reveal.in { opacity: 1; transform: none; } .reveal-delay-1 { transition-delay: .1s; } .reveal-delay-2 { transition-delay: .2s; } .reveal-delay-3 { transition-delay: .3s; } .reveal-delay-4 { transition-delay: .4s; } @media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; transform: none; transition: none; } } footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 0 2rem; } footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } footer .footer-brand p { font-size: .9rem; margin-top: .75rem; max-width: 28ch; } footer h5 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; } footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; } footer ul a { font-size: .9rem; color: var(--muted); transition: color 160ms; } footer ul a:hover { color: var(--ink); } footer .footer-bottom { border-top: 1px solid var(--border); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; } footer .footer-bottom p { font-size: .85rem; color: var(--muted); max-width: none; } footer .social-links { display: flex; gap: .75rem; } footer .social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius-sm); border: 1px solid var(--border); color: var(--muted); transition: color 160ms, border-color 160ms, background 160ms; } footer .social-links a:hover { color: var(--ink); border-color: var(--accent); background: rgba(124,58,237,0.12); } footer .social-links a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; } @media (max-width: 768px) { footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } } @media (max-width: 480px) { footer .footer-grid { grid-template-columns: 1fr; } footer .footer-bottom { flex-direction: column; align-items: flex-start; } } .hero-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; } .hero-mesh::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.35) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(6,182,212,0.2) 0%, transparent 65%), radial-gradient(ellipse 60% 50% at 10% 90%, rgba(91,33,182,0.25) 0%, transparent 60%); } .hero-mesh::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 0%, transparent 80%); } .dark-band { background: linear-gradient(135deg, #050B18 0%, #0F1E3C 100%); } .noise-bg { position: relative; } .noise-bg::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); opacity: .4; pointer-events: none; }

/* ===== HERO ===== */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; padding-bottom: 5rem; overflow: hidden; }
#hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(124,58,237,0.32) 0%, transparent 70%), radial-gradient(ellipse 45% 35% at 85% 70%, rgba(6,182,212,0.18) 0%, transparent 65%), radial-gradient(ellipse 50% 45% at 15% 85%, rgba(91,33,182,0.22) 0%, transparent 60%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; width: 100%; }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.hero-tag { display: inline-flex; width: fit-content; padding: .35rem 1rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(124,58,237,0.15); color: #A78BFA; border: 1px solid rgba(124,58,237,0.3); }
.hero-h1 { margin: 0; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 56ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .25rem; }
.hero-proof { display: flex; align-items: center; gap: 1rem; margin-top: .5rem; }
.avatars-stack { display: flex; }
.avatar-circ { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg); background: linear-gradient(135deg, #7C3AED, #06B6D4); margin-left: -12px; }
.avatar-circ:first-child { margin-left: 0; }
.hero-proof-text { font-size: .95rem; color: var(--muted); max-width: none; }
.hero-proof-text strong { color: var(--ink); }
.hero-float-card { position: relative; padding: 1.75rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: .65rem; max-width: 340px; margin-left: auto; }
.uptime-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(16,185,129,0.25); display: grid; place-items: center; }
.uptime-inner-dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; box-shadow: 0 0 12px #10B981; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
.card-stat-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.card-stat-value { font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 700; color: var(--ink); }
.latency-bar-wrap { margin-top: .35rem; }
.latency-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); margin-bottom: .35rem; }
.latency-bar-bg { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.latency-bar-fill { width: 92%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; }
.card-timestamp { font-size: .85rem; color: var(--muted); line-height: 1.55; }
.hero-noise { position: absolute; inset: 0; z-index: 0; opacity: .45; pointer-events: none; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-content { align-items: center; } .hero-float-card { margin: 0 auto; } }
@media (max-width: 640px) { #hero { padding-top: 6.5rem; } .hero-h1 { font-size: 2.2rem; } .hero-ctas { justify-content: center; } }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.25rem; text-align: center; transition: transform .2s ease, border-color .2s ease; }
.stat-item:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.stat-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(124,58,237,0.12); color: #A78BFA; display: grid; place-items: center; margin: 0 auto .85rem; }
.stat-number { display: block; font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ink); margin-bottom: .35rem; }
.stat-label { font-size: .9rem; color: var(--muted); }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* ===== FEATURES (BENTO) ===== */
.features-header { text-align: center; max-width: 680px; margin: 0 auto 2.75rem; }
.features-h2 { margin-bottom: .75rem; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 1.25rem; }
.bento-card { padding: 1.75rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: .9rem; }
.bento-card-1 { grid-column: span 2; grid-row: span 2; }
.bento-card-2 { grid-column: span 2; }
.bento-card-3 { grid-column: span 2; }
.bento-card-4 { grid-column: span 2; }
.feat-icon-wrap { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(124,58,237,0.12); color: #A78BFA; display: grid; place-items: center; }
.feat-h4 { font-size: 1.15rem; font-weight: 700; }
.feat-p { font-size: .95rem; color: var(--muted); }
@media (max-width: 980px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } .bento-card-1 { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 640px) { .bento-grid, .bento-card-1, .bento-card-2, .bento-card-3, .bento-card-4 { grid-template-columns: 1fr; grid-column: span 1; } }

/* ===== PRICING ===== */
.pricing-header { text-align: center; max-width: 680px; margin: 0 auto 2.75rem; }
.pricing-sub { color: var(--muted); margin: .5rem 0 1rem; }
.pricing-link { display: inline-flex; font-weight: 600; color: #A78BFA; border-bottom: 1px solid rgba(167,139,250,0.3); }
.pricing-link:hover { color: var(--accent-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card { position: relative; padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
.pricing-card-pro { border: 1px solid rgba(167,139,250,0.45); transform: scale(1.03); box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.15); }
.pricing-card-pro::before { display: none; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--bg); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .35rem 1rem; border-radius: 999px; }
.plan-name { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; color: var(--ink); }
.plan-period { font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.5rem; }
.plan-features li { position: relative; padding-left: 1.5rem; font-size: .92rem; color: var(--muted); }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: #10B981; font-weight: 700; }
.pricing-footer-note { text-align: center; margin-top: 2.5rem; color: var(--muted); font-size: .95rem; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } .pricing-card-pro { transform: none; } }

/* ===== TECH STACK MARQUEE ===== */
.techstack-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.marquee-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%); }
.marquee-track { display: flex; width: max-content; gap: .75rem; animation: marquee 35s linear infinite; }
.marquee-track-reverse { animation-direction: reverse; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tech-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .5rem 1rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--ink); font-size: .9rem; font-weight: 500; white-space: nowrap; }
.tech-badge-sm { padding: .4rem .85rem; font-size: .82rem; }
.tech-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ===== TESTIMONIALS ===== */
.testimonials-header { text-align: center; max-width: 680px; margin: 0 auto 2.75rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { padding: 1.75rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.stars { color: #FBBF24; font-size: 1.05rem; letter-spacing: .1em; margin-bottom: .8rem; }
.testi-quote { font-size: 1rem; color: var(--muted); font-style: italic; line-height: 1.6; flex: 1; }
.testi-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #A78BFA, #06B6D4); flex-shrink: 0; }
.testi-avatar-1 { background: linear-gradient(135deg, #7C3AED, #EC4899); }
.testi-avatar-2 { background: linear-gradient(135deg, #06B6D4, #10B981); }
.testi-avatar-3 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.testi-name { font-weight: 600; color: var(--ink); font-size: .95rem; margin-bottom: .1rem; }
.testi-company { font-size: .82rem; color: var(--muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ===== CTA BAND ===== */
#cta-band { text-align: center; }
.cta-band-inner { max-width: 780px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 3rem 2rem; }
.cta-h2 { margin-bottom: .75rem; }
.cta-p { color: var(--muted); margin: 0 auto 1.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.75rem; }
.cta-guarantees { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; list-style: none; color: var(--muted); font-size: .9rem; }
.guarantee-item { display: flex; align-items: center; gap: .35rem; }
.guarantee-item::before { content: '✓'; color: #10B981; font-weight: 700; }
@media (max-width: 640px) { .cta-band-inner { padding: 2rem 1.25rem; } }

/* ===== REVEAL UTILS ===== */
.reveal { opacity: 0.92; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
#testimonials .reveal, #cta-band .reveal, #pricing .reveal, #features .reveal, #stats .reveal { will-change: opacity, transform; }