/* ============================================
TOKENS
============================================ */
@property --angle {
syntax: '<angle>';
initial-value: 0deg;
inherits: false;
}
:root {
--bg: #050510;
--bg-alt: #080814;
--bg-card: rgba(255,255,255,0.04);
--surface: rgba(255,255,255,0.04);
--surface-2: rgba(255,255,255,0.06);
--border: rgba(255,255,255,0.06);
--border-2: rgba(255,255,255,0.10);
--text: #e8edf3;
--text-2: #94a3b8;
--text-3: #4b5e78;
--blue: #2563eb;
--blue-light: #3b82f6;
--cyan: #0ea5e9;
--cyan-light: #38bdf8;
--grad-text: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #60a5fa 100%);
--grad-border: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(14,165,233,0.15), transparent 70%);
--grad-cta: linear-gradient(135deg, #0ea5e9, #2563eb);
--noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
--r: 12px;
--r-lg: 16px;
--r-xl: 24px;
}
/* ============================================
RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
font-family: 'Inter', -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.55;
overflow-x: hidden;
}
::selection { background: rgba(59,130,246,0.3); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
body::after {
content: '';
position: fixed;
inset: 0;
background: var(--noise);
opacity: 0.03;
pointer-events: none;
z-index: 9999;
mix-blend-mode: overlay;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 200; line-height: 1.1; text-wrap: balance; }
/* ============================================
LAYOUT
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
/* ============================================
TYPOGRAPHY
============================================ */
.text-gradient {
background: var(--grad-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.text-mono {
font-family: 'JetBrains Mono', monospace;
letter-spacing: 0.05em;
}
.section-label {
font-family: 'JetBrains Mono', monospace;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--blue-light);
margin-bottom: 10px;
font-weight: 500;
}
.section-title {
font-weight: 200;
margin-bottom: 10px;
line-height: 1.08;
}
.section-desc {
color: var(--text-2);
max-width: 480px;
line-height: 1.55;
font-weight: 300;
text-wrap: balance;
}
.section-header { margin-bottom: 36px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }
/* ============================================
BUTTONS
============================================ */
.btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 8px 18px;
border-radius: 6px;
font-weight: 400;
transition: all 0.3s ease;
position: relative;
letter-spacing: 0.01em;
}
.btn-primary {
background: var(--grad-cta);
color: #fff;
box-shadow: 0 0 24px rgba(59,130,246,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
box-shadow: 0 0 40px rgba(59,130,246,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 0 16px rgba(59,130,246,0.2); }
.btn-ghost {
background: var(--surface);
border: 1px solid var(--border-2);
color: var(--text);
backdrop-filter: blur(12px);
}
.btn-ghost:hover {
background: var(--surface-2);
border-color: rgba(255,255,255,0.18);
}
.btn-ghost:active { transform: scale(0.98); }
.btn iconify-icon { stroke-width: 1.5; }
.hero__actions .btn-primary {
background: transparent;
padding: 11px 28px;
font-weight: 500;
border-radius: 50px;
overflow: hidden;
z-index: 1;
box-shadow: none;
letter-spacing: 0.02em;
}
.hero__actions .btn-primary::before {
content: '';
position: absolute;
inset: 0;
border-radius: 50px;
padding: 1.5px;
background: conic-gradient(from var(--angle), transparent 20%, var(--cyan-light) 40%, var(--blue) 55%, transparent 80%);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
animation: conic-spin 3s linear infinite;
z-index: -1;
}
.hero__actions .btn-primary::after {
content: '';
position: absolute;
inset: 1.5px;
border-radius: 50px;
background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(37,99,235,0.25));
z-index: -1;
}
.hero__actions .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 48px rgba(14,165,233,0.3), 0 0 96px rgba(37,99,235,0.15);
}
.hero__actions .btn-primary:hover::after {
background: linear-gradient(135deg, rgba(14,165,233,0.25), rgba(37,99,235,0.35));
}
.hero__actions .btn-primary .btn-shimmer {
position: absolute;
inset: 0;
border-radius: 50px;
overflow: hidden;
pointer-events: none;
}
.hero__actions .btn-primary .btn-shimmer::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 60%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
animation: shimmer-sweep 3s ease-in-out infinite;
}
@keyframes shimmer-sweep {
0% { left: -100%; }
50% { left: 120%; }
100% { left: 120%; }
}
.nav__actions .btn-primary {
border-radius: 50px;
padding: 8px 20px;
background: linear-gradient(135deg, var(--cyan), var(--blue));
box-shadow: 0 0 16px rgba(14,165,233,0.3);
animation: nav-btn-glow 3s ease-in-out infinite;
}
@keyframes nav-btn-glow {
0%, 100% { box-shadow: 0 0 16px rgba(14,165,233,0.3); }
50% { box-shadow: 0 0 28px rgba(14,165,233,0.5), 0 0 8px rgba(56,189,248,0.2); }
}
.nav__actions .btn-primary:hover {
box-shadow: 0 0 36px rgba(14,165,233,0.5);
transform: translateY(-1px);
}
/* ============================================
ANIMATED CONIC BORDER
============================================ */
.conic-border {
position: relative;
border-radius: var(--r-lg);
overflow: hidden;
}
.conic-border::before {
content: '';
position: absolute;
inset: -1px;
border-radius: inherit;
background: conic-gradient(from var(--angle), transparent 30%, var(--cyan) 48%, var(--blue) 52%, transparent 70%);
animation: conic-spin 4s linear infinite;
z-index: -1;
}
.conic-border::after {
content: '';
position: absolute;
inset: 1px;
border-radius: calc(var(--r-lg) - 1px);
background: var(--bg-alt);
z-index: -1;
}
@keyframes conic-spin { to { --angle: 360deg; } }
/* ============================================
REVEAL ANIMATIONS
============================================ */
.reveal {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-scale {
opacity: 0;
transform: scale(0.95);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.stagger-up .reveal-child {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-up.is-visible .reveal-child { opacity: 1; transform: translateY(0); }
.stagger-up.is-visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.stagger-up.is-visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.stagger-up.is-visible .reveal-child:nth-child(3) { transition-delay: 160ms; }
.stagger-up.is-visible .reveal-child:nth-child(4) { transition-delay: 240ms; }
.stagger-up.is-visible .reveal-child:nth-child(5) { transition-delay: 320ms; }
.stagger-up.is-visible .reveal-child:nth-child(6) { transition-delay: 400ms; }
.stagger-up.is-visible .reveal-child:nth-child(7) { transition-delay: 480ms; }
.stagger-up.is-visible .reveal-child:nth-child(8) { transition-delay: 560ms; }
.stagger-up.is-visible .reveal-child:nth-child(9) { transition-delay: 640ms; }
.stagger-up.is-visible .reveal-child:nth-child(10) { transition-delay: 720ms; }
.stagger-up.is-visible .reveal-child:nth-child(11) { transition-delay: 800ms; }
.stagger-up.is-visible .reveal-child:nth-child(12) { transition-delay: 880ms; }
/* ============================================
NAV
============================================ */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 12px 0;
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease;
}
.nav.is-scrolled {
background: rgba(5,5,16,0.85);
backdrop-filter: blur(20px) saturate(150%);
border-bottom: 1px solid var(--border);
padding: 10px 0;
}
.nav.is-hidden {
transform: translateY(-100%);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
@media(min-width:768px){ .nav__inner{ gap:32px; } }
.nav__logo {
font-family: 'Outfit', sans-serif;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
background: var(--grad-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
color: var(--text-2);
transition: color 0.2s;
font-weight: 400;
position: relative;
}
.nav__links a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--blue-light);
transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__toggle {
display: none;
flex-direction: column;
gap: 5px;
width: 24px;
cursor: pointer;
padding: 4px 0;
}
.nav__toggle span {
display: block;
width: 100%;
height: 1.5px;
background: var(--text);
transition: all 0.3s;
border-radius: 2px;
}
.nav__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
/* ============================================
HERO
============================================ */
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 140px;
padding-bottom: 48px;
overflow: hidden;
}
.hero__bg {
position: absolute;
inset: 0;
z-index: 0;
background: radial-gradient(ellipse at top, rgba(14,165,233,0.1), transparent 60%);
}
.hero__top {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
padding: 0 24px;
}
.hero__badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 12px 4px 7px;
border-radius: 100px;
background: rgba(14,165,233,0.06);
border: 1px solid rgba(14,165,233,0.12);
color: var(--cyan-light);
margin-bottom: 24px;
font-weight: 400;
letter-spacing: 0.03em;
}
.hero__badge-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--cyan);
animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(14,165,233,0); }
}
.hero__title { margin-bottom: 24px; }
.hero__title strong {
font-weight: 500;
background: var(--grad-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero__desc {
color: var(--text-2);
max-width: 540px;
margin: 0 auto 32px;
font-weight: 300;
}
.hero__actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 48px;
}
.hero__video-wrapper {
position: relative;
width: 100%;
max-width: 800px;
margin: 0 auto;
border-radius: var(--r-xl);
overflow: hidden;
border: 1px solid var(--border-2);
background: var(--bg-card);
backdrop-filter: blur(12px);
box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.1);
aspect-ratio: 16 / 9;
display: flex;
align-items: center;
justify-content: center;
}
.hero__video-placeholder {
text-align: center;
color: var(--text-3);
}
.hero__video-placeholder iconify-icon {
font-size: 3rem;
color: var(--cyan);
opacity: 0.5;
margin-bottom: 12px;
}
/* ============================================
TRUST BAR (ECOSYSTEM)
============================================ */
.trust-bar { padding: 24px 0; position: relative; border-bottom: 1px solid var(--border); }
.trust-bar__inner {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
}
.trust-bar__item {
font-family: 'Outfit', sans-serif;
font-weight: 500;
color: var(--text-3);
opacity: 0.55;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 6px;
white-space: nowrap;
}
.trust-bar__item:hover { opacity: 1; color: var(--text-2); text-shadow: 0 0 20px rgba(59,130,246,0.15); }

/* ============================================
SOCIAL PROOF
============================================ */
.social-proof {
padding: 80px 0;
position: relative;
overflow: hidden;
}
.social-proof__tracks { display: flex; flex-direction: column; gap: 16px; }
.social-proof__track-wrap { overflow: hidden; position: relative; }
.social-proof__track-wrap::before, .social-proof__track-wrap::after {
content: ''; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 2; pointer-events: none;
}
.social-proof__track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.social-proof__track-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.social-proof__track { display: flex; gap: 16px; width: max-content; }
.social-proof__track--right { animation: ticker-right 50s linear infinite; }
.social-proof__track--left { animation: ticker-left 50s linear infinite; }
.social-proof__track:hover { animation-play-state: paused; }
@keyframes ticker-right { to { transform: translateX(-50%); } }
@keyframes ticker-left { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.love-card {
width: 320px;
flex-shrink: 0;
padding: 24px;
border-radius: 12px;
background: rgba(255,255,255,0.025);
border: 1px solid var(--border);
transition: all 0.3s ease;
}
.love-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.love-card__quote {
line-height: 1.6;
color: var(--text-2);
font-weight: 300;
margin-bottom: 16px;
font-style: italic;
}
.love-card__author { display: flex; align-items: center; gap: 12px; }
.love-card__avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
border: 1px solid var(--border);
background: var(--surface-2);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-3);
}
/* ============================================
CHECKOUT BOX
============================================ */
.pricing-card--glow {
background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, rgba(14,165,233,0.015) 100%);
border: 1px solid rgba(59,130,246,0.2);
box-shadow: 0 0 48px rgba(59,130,246,0.06);
border-radius: var(--r-xl);
padding: clamp(24px, 5vw, 40px);
text-align: center;
position: relative;
}
.pricing-card--glow:hover {
border-color: rgba(59,130,246,0.3);
box-shadow: 0 0 60px rgba(59,130,246,0.1), 0 0 20px rgba(14,165,233,0.05);
}
/* ============================================
RESPONSIVE & UTILS
============================================ */

@media (max-width: 768px) {
.nav__links { display: none; }
.nav__toggle { display: flex; }
.nav.is-open .nav__links {
display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
background: rgba(5,5,16,0.95); backdrop-filter: blur(20px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
}
.hero { padding-top: 100px; }
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
