/* ============================================
TOKENS
============================================ */
@property --angle {
syntax: '<angle>';
initial-value: 0deg;
inherits: false;
}
:root {
--bg: #040711;
--bg-alt: #111533;
--bg-card: rgba(17,21,51,0.4);
--surface: rgba(255,255,255,0.04);
--surface-2: rgba(255,255,255,0.06);
--border: rgba(255,255,255,0.08);
--border-2: rgba(255,255,255,0.14);
--text: #FFFFFF;
--text-2: rgba(255, 255, 255, 0.8);
--text-3: rgba(255, 255, 255, 0.6);
--blue: #471EFF;
--blue-light: #8A61FF;
--cyan: #C30EFF;
--cyan-light: #DA6CFF;
--sky: #DA6CFF;
--success: #00E676;
--grad-text: linear-gradient(135deg, #DA6CFF 0%, #C30EFF 50%, #471EFF 100%);
--grad-border: linear-gradient(135deg, rgba(71,30,255,0.4), rgba(195,14,255,0.15), transparent 70%);
--grad-cta: linear-gradient(135deg, #C30EFF, #471EFF);
--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;
    font-size: 20px;
}
body {
font-family: 'Poppins', -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
font-size: 1rem;
line-height: 1.6;
overflow-x: hidden;
font-weight: 300;
}
/* Custom selection */
::selection { background: rgba(71,30,255,0.3); color: #fff; }
/* Custom scrollbar */
::-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 for keyboard accessibility */
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
.skip-link {
position: absolute;
top: -100%;
left: 16px;
z-index: 10000;
padding: 8px 16px;
background: var(--cyan);
color: #fff;
border-radius: 4px;
font-size: 0.85rem;
}
.skip-link:focus { top: 12px; }
/* Subtle grain texture overlay */
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: 'Manrope', sans-serif; font-weight: 300; line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }
/* ============================================
LAYOUT
============================================ */
.container { max-width: 1440px !important; margin: 0 24px; padding: 0 20px; }
.container-sm { max-width: 1000px !important; margin: 0 24px; padding: 0 20px; }
/* ============================================
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;
font-size: 0.8rem;
letter-spacing: 0.05em;
}
.section-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--blue-light);
margin-bottom: 10px;
font-weight: 500;
}
.section-title {
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 300;
letter-spacing: -0.035em;
margin-bottom: 10px;
line-height: 1.08;
}
.section-desc {
color: var(--text-2);
font-size: 0.88rem;
max-width: 1000px;
line-height: 1.6;
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: 100px;
font-size: 0.8rem;
font-weight: 400;
transition: all 0.3s ease;
position: relative;
white-space: nowrap;
letter-spacing: 0.01em;
}
.btn-primary {
background: var(--grad-cta);
color: #fff;
box-shadow: 0 0 24px rgba(71,30,255,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
box-shadow: 0 0 40px rgba(71,30,255,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(71,30,255,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 { font-size: 1.1rem; }
/* --- Hero CTA: animated beam border + shimmer --- */
.hero__actions .btn-primary {
background: transparent;
padding: 11px 28px;
font-size: 0.88rem;
font-weight: 400;
border-radius: 100px;
overflow: hidden;
z-index: 1;
box-shadow: none;
letter-spacing: 0.02em;
}
.hero__actions .btn-primary::before {
content: '';
position: absolute;
inset: 0;
border-radius: 100px;
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: 100px;
background: linear-gradient(135deg, rgba(195,14,255,0.15), rgba(71,30,255,0.25));
z-index: -1;
}
.hero__actions .btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 48px rgba(195,14,255,0.3), 0 0 96px rgba(71,30,255,0.15);
}
.hero__actions .btn-primary:hover::after {
background: linear-gradient(135deg, rgba(195,14,255,0.25), rgba(71,30,255,0.35));
}
.hero__actions .btn-primary .btn-shimmer {
position: absolute;
inset: 0;
border-radius: 100px;
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%; }
}
/* Hero ghost button */
.hero__actions .btn-ghost {
padding: 11px 24px;
font-size: 0.88rem;
border-radius: 100px;
border: 1px solid rgba(255,255,255,0.1);
background: rgba(255,255,255,0.03);
backdrop-filter: blur(20px);
}
.hero__actions .btn-ghost:hover {
border-color: rgba(218,108,255,0.3);
background: rgba(195,14,255,0.06);
box-shadow: 0 0 32px rgba(195,14,255,0.12), inset 0 0 12px rgba(195,14,255,0.04);
transform: translateY(-2px);
}
/* --- Nav Get Started: pill with pulse glow --- */
.nav__actions .btn-primary {
border-radius: 100px;
padding: 8px 20px;
background: linear-gradient(135deg, var(--cyan), var(--blue));
box-shadow: 0 0 16px rgba(195,14,255,0.3);
animation: nav-btn-glow 3s ease-in-out infinite;
}
@keyframes nav-btn-glow {
0%, 100% { box-shadow: 0 0 16px rgba(195,14,255,0.3); }
50% { box-shadow: 0 0 28px rgba(195,14,255,0.5), 0 0 8px rgba(218,108,255,0.2); }
}
.nav__actions .btn-primary:hover {
box-shadow: 0 0 36px rgba(195,14,255,0.5);
transform: translateY(-1px);
}
.nav__actions .btn-ghost { border-radius: 100px; }
/* ============================================
GLASS CARD
============================================ */
.glass {
background: rgba(17,21,51,0.8);
border: 1px solid var(--border-2);
border-radius: var(--r-lg);
transition: border-color 0.3s ease;
}
.glass:hover { border-color: rgba(255,255,255,0.15); }
/* ============================================
GRADIENT BORDER CARD
============================================ */
.grad-border {
position: relative;
background: var(--bg-card);
border-radius: var(--r-lg);
border: 1px solid transparent;
}
.grad-border::before {
content: '';
position: absolute;
inset: 0;
border-radius: var(--r-lg);
padding: 1px;
background: var(--grad-border);
-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;
pointer-events: none;
opacity: 0;
transition: opacity 0.4s ease;
}
.grad-border:hover::before { opacity: 1; }
/* ============================================
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; }
/* ============================================
NAV
============================================ */
.nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 12px 0;
transition: all 0.3s ease;
}
.nav.is-scrolled {
background: rgba(4,7,17,0.85);
backdrop-filter: blur(20px) saturate(150%);
border-bottom: 1px solid var(--border);
padding: 10px 0;
}
.nav__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}
.nav__logo {
font-family: 'Manrope', sans-serif;
font-size: 1.05rem;
font-weight: 600;
letter-spacing: 0.05em;
background: var(--text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: flex;
align-items: center;
gap: 12px;
}
.nav__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.nav__links {
display: flex;
align-items: center;
gap: 32px;
}
.nav__links a {
font-size: 0.82rem;
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(--cyan-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__actions .btn { padding: 8px 18px; font-size: 0.85rem; }
.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 & CURSOR GLOW
============================================ */
.hero {
position: relative;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 140px;
padding-bottom: 48px;
overflow: hidden;
}
.hero__glow-cursor {
position: absolute;
top: 0;
left: 0;
width: 500px;
height: 500px;
pointer-events: none;
z-index: 1;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity 0.5s ease;
will-change: transform;
}
.hero:hover .hero__glow-cursor {
opacity: 0.8;
}
.hero__glow-cursor::before {
content: '';
position: absolute;
inset: -50px;
background: 
  radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.4) 0%, transparent 60%),
  radial-gradient(circle at 70% 30%, rgba(255, 0, 230, 0.4) 0%, transparent 60%),
  radial-gradient(circle at 50% 70%, rgba(124, 0, 255, 0.4) 0%, transparent 60%);
border-radius: 50%;
filter: blur(40px);
animation: spin-wavy 8s linear infinite;
will-change: transform;
}
.hero__glow-cursor::after {
content: '';
position: absolute;
inset: -100px;
border-radius: 50%;
background: 
  radial-gradient(circle at 50% 50%, 
    transparent 0%, 
    rgba(0, 217, 255, 0.8) 15%, 
    transparent 30%, 
    rgba(255, 0, 230, 0.8) 45%, 
    transparent 60%, 
    rgba(124, 0, 255, 0.8) 75%, 
    transparent 90%
  );
filter: blur(12px);
transform: scale(0.1);
opacity: 0;
will-change: transform, opacity;
}
.hero__glow-cursor.is-idling::after {
animation: water-ripple-expand 2.5s cubic-bezier(0.1, 0.5, 0.5, 1) infinite;
}
@keyframes spin-wavy {
0% { transform: rotate(0deg) scale(1); }
33% { transform: rotate(120deg) scale(1.1); }
66% { transform: rotate(240deg) scale(0.9); }
100% { transform: rotate(360deg) scale(1); }
}
@keyframes water-ripple-expand {
0% { transform: scale(0.1); opacity: 1; }
70% { opacity: 0.7; }
100% { transform: scale(1.5); opacity: 0; }
}
.hero__bg {
position: absolute;
inset: 0;
z-index: 0;
min-height: 500px;
}
.hero__mask {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 25%;
background: linear-gradient(to bottom, transparent, var(--bg));
z-index: 2;
pointer-events: none;
}
.hero__top {
position: relative;
z-index: 3;
text-align: center;
max-width: 780px;
padding: 0 24px;
}
.hero__bottom {
position: relative;
z-index: 3;
text-align: center;
max-width: 680px;
padding: 0 24px;
margin-top: auto;
margin-bottom: 130px;
}
.hero__badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 12px 4px 7px;
border-radius: 100px;
background: rgba(195,14,255,0.06);
border: 1px solid rgba(195,14,255,0.12);
font-size: 0.75rem;
color: var(--cyan-light);
margin-bottom: 12px;
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(195,14,255,0.4); }
50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(195,14,255,0); }
}
.hero__title {
font-size: clamp(2.4rem, 5.5vw, 3.6rem);
font-weight: 300;
letter-spacing: -0.04em;
line-height: 1.05;
margin-bottom: 0;
}
.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);
font-size: 0.92rem;
line-height: 1.6;
max-width: 480px;
margin: 0 auto 16px;
font-weight: 300;
text-shadow: 0 0 24px rgba(4,7,17,0.8);
}
.hero__actions {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
/* Scroll indicator */
.hero__scroll-hint {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
animation: scroll-hint 2.5s ease-in-out infinite;
opacity: 0.3;
}
.hero__scroll-hint span {
width: 1px;
height: 20px;
background: linear-gradient(to bottom, var(--text-3), transparent);
}
@keyframes scroll-hint {
0%, 100% { opacity: 0.15; transform: translateX(-50%) translateY(0); }
50% { opacity: 0.4; transform: translateX(-50%) translateY(6px); }
}
/* Terminal cursor blink */
.terminal-cursor {
display: inline-block;
width: 7px;
height: 14px;
background: var(--cyan-light);
animation: cursor-blink 1.2s steps(2) infinite;
vertical-align: middle;
margin-left: 2px;
opacity: 0.7;
}
@keyframes cursor-blink {
0%, 100% { opacity: 0.7; }
50% { opacity: 0; }
}
/* ============================================
TRUST BAR
============================================ */
.trust-bar {
padding: 24px 0;
position: relative;
}
.trust-bar__inner {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
flex-wrap: wrap;
padding: 14px 32px;
border-radius: 10px;
background: rgba(255,255,255,0.02);
border: 1px solid var(--border);
backdrop-filter: blur(8px);
}
.trust-bar__item {
font-family: 'Manrope', sans-serif;
font-size: 0.82rem;
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(71,30,255,0.15); }
.trust-bar__item iconify-icon { font-size: 1.15rem; }
/* ============================================
CAPABILITIES — TABBED INTERFACE
============================================ */
.capabilities {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.capabilities::before {
content: '';
position: absolute;
top: 50%;
left: 30%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(71,30,255,0.05) 0%, transparent 70%);
pointer-events: none;
}
.capabilities__layout {
display: grid;
grid-template-columns: 220px 1fr;
gap: 32px;
align-items: start;
}
.capabilities__tabs {
display: flex;
flex-direction: column;
gap: 2px;
}
.cap-tab {
padding: 10px 14px;
border-radius: 8px;
cursor: pointer;
transition: all 0.25s;
display: flex;
align-items: center;
gap: 12px;
color: var(--text-3);
border: 1px solid transparent;
}
.cap-tab:hover { color: var(--text-2); background: rgba(255,255,255,0.02); }
.cap-tab.is-active {
background: rgba(255,255,255,0.04);
border-color: var(--border-2);
color: var(--text);
}
.cap-tab.is-active .cap-tab__icon {
background: rgba(71,30,255,0.1);
border-color: rgba(71,30,255,0.2);
color: var(--cyan-light);
box-shadow: 0 0 16px rgba(71,30,255,0.08);
}
.cap-tab__icon {
width: 34px;
height: 34px;
border-radius: 8px;
background: var(--surface);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.95rem;
transition: all 0.25s;
flex-shrink: 0;
}
.cap-tab__text { font-size: 0.84rem; }
.cap-panel { display: none; }
.cap-panel.is-active { display: block; animation: panelIn 0.3s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cap-panel__title {
font-size: 1.15rem;
font-weight: 400;
letter-spacing: -0.02em;
margin-bottom: 6px;
}
.cap-panel__desc {
color: var(--text-2);
font-size: 0.82rem;
line-height: 1.6;
max-width: 480px;
margin-bottom: 20px;
font-weight: 300;
}
.cap-panel__visual {
background: rgba(255,255,255,0.02);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px;
position: relative;
overflow: hidden;
}
.cap-panel__visual::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 50%;
background: radial-gradient(circle at top right, rgba(71,30,255,0.05), transparent 70%);
pointer-events: none;
}
/* Cap visual: metric tiles */
.cap-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cap-tile {
padding: 14px;
border-radius: 10px;
background: rgba(255,255,255,0.03);
border: 1px solid var(--border);
text-align: center;
transition: all 0.3s ease;
}
.cap-tile:hover { border-color: rgba(71,30,255,0.15); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(71,30,255,0.06); }
.cap-tile__val {
font-family: 'JetBrains Mono', monospace;
font-size: 1.4rem;
font-weight: 500;
color: var(--cyan-light);
margin-bottom: 4px;
}
.cap-tile__lbl { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
/* Cap visual: bar chart */
.cap-bars { display: flex; align-items: flex-end; gap: 5px; height: 140px; }
.cap-bar {
flex: 1;
border-radius: 3px 3px 0 0;
background: linear-gradient(to top, rgba(195,14,255,0.15), rgba(71,30,255,0.4));
transition: opacity 0.3s;
opacity: 0.7;
}
.cap-bar:hover { opacity: 1; background: linear-gradient(to top, rgba(195,14,255,0.25), rgba(71,30,255,0.6)); }
.cap-bar.accent { background: linear-gradient(to top, rgba(218,108,255,0.2), rgba(195,14,255,0.6)); }
/* Cap visual: code snippet */
.cap-code {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
line-height: 1.9;
color: var(--text-2);
white-space: pre;
}
.cap-code .kw { color: var(--cyan-light); }
.cap-code .str { color: var(--success); }
.cap-code .num { color: var(--blue-light); }
/* Cap visual: map dots */
.cap-map { position: relative; height: 180px; }
.cap-map__dot {
position: absolute;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--cyan-light);
box-shadow: 0 0 12px rgba(71,30,255,0.4);
}
.cap-map__dot::after {
content: '';
position: absolute;
inset: -4px;
border-radius: 50%;
border: 1px solid rgba(71,30,255,0.2);
animation: dot-ping 2s ease-out infinite;
}
@keyframes dot-ping { to { transform: scale(3); opacity: 0; } }
.cap-map__dot:nth-child(2)::after { animation-delay: 0.3s; }
.cap-map__dot:nth-child(3)::after { animation-delay: 0.6s; }
.cap-map__dot:nth-child(4)::after { animation-delay: 0.9s; }
.cap-map__dot:nth-child(5)::after { animation-delay: 1.2s; }
.cap-map__dot:nth-child(6)::after { animation-delay: 1.5s; }
.cap-map__dot:nth-child(7)::after { animation-delay: 1.8s; }
/* Cap visual: security shield */
.cap-shield { display: flex; flex-direction: column; gap: 10px; }
.cap-shield__row {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-radius: 10px;
background: rgba(255,255,255,0.02);
border: 1px solid var(--border);
font-size: 0.82rem;
color: var(--text-2);
transition: border-color 0.3s;
}
.cap-shield__row:hover { border-color: rgba(71,30,255,0.12); }
.cap-shield__row iconify-icon { color: var(--blue-light); font-size: 1.05rem; }
.cap-shield__status {
margin-left: auto;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--success);
}
/* ============================================
PLATFORM — DEPLOY TERMINAL
============================================ */
.platform {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
background: var(--bg-alt);
}
.platform::before, .platform::after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border-2) 30%, var(--border-2) 70%, transparent);
}
.platform::before { top: 0; }
.platform::after { bottom: 0; }
.platform__terminal {
max-width: 900px;
margin: 0 auto;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border-2);
box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 60px rgba(71,30,255,0.06), 0 0 120px rgba(195,14,255,0.03);
transition: box-shadow 0.4s ease;
}
.platform__terminal:hover {
box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 80px rgba(71,30,255,0.1), 0 0 160px rgba(195,14,255,0.05);
}
.platform__terminal-bar {
display: flex;
align-items: center;
padding: 10px 16px;
background: rgba(255,255,255,0.03);
border-bottom: 1px solid var(--border);
gap: 8px;
}
.platform__terminal-dots { display: flex; gap: 6px; }
.platform__terminal-dots span {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.06);
}
.platform__terminal-title {
flex: 1;
text-align: center;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-3);
}
.platform__terminal-body {
padding: 18px 22px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
line-height: 1.85;
background: rgba(4,7,17,0.95);
}
.t-line { display: flex; justify-content: space-between; gap: 16px; }
.t-prompt { color: var(--cyan-light); }
.t-cmd { color: var(--text); font-weight: 500; }
.t-flag { color: var(--blue-light); }
.t-success { color: var(--success); }
.t-time { color: var(--text-3); white-space: nowrap; }
.t-url { color: var(--cyan); }
.t-dim { color: var(--text-3); }
.t-cursor {
display: inline-block;
width: 7px;
height: 14px;
background: var(--cyan-light);
animation: blink 1s step-end infinite;
vertical-align: middle;
margin-left: 2px;
}
.platform__features {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
max-width: 900px;
margin: 28px auto 0;
}
@keyframes blink { 50% { opacity: 0; } }
/* ============================================
PIPELINE — CONNECTED FLOW
============================================ */
.pipeline {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.pipeline::before {
content: '';
position: absolute;
top: 40%;
right: -5%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(195,14,255,0.04) 0%, transparent 65%);
pointer-events: none;
}
.pipeline__flow {
display: flex;
align-items: flex-start;
justify-content: center;
position: relative;
max-width: 1100px;
margin: 0 auto;
}
.pipeline__line {
position: absolute;
top: 65px;
left: calc(100% / 6);
right: calc(100% / 6);
height: 2px;
background: var(--border-2);
overflow: hidden;
z-index: 0;
}
.pipeline__line::after {
content: '';
position: absolute;
top: 0;
left: -30%;
width: 30%;
height: 100%;
background: linear-gradient(90deg, transparent, var(--cyan-light), transparent);
animation: line-shimmer 3s ease-in-out infinite;
}
@keyframes line-shimmer {
0% { left: -30%; opacity: 0; }
15% { opacity: 1; }
85% { opacity: 1; }
100% { left: 100%; opacity: 0; }
}
.pipeline__step {
flex: 1;
text-align: center;
position: relative;
z-index: 1;
padding: 0 16px;
}
.pipeline__tag {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--blue-light);
margin-bottom: 12px;
}
.pipeline__node {
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--bg);
border: 2px solid var(--border-2);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 14px;
font-size: 1.15rem;
color: var(--cyan-light);
transition: all 0.4s ease;
box-shadow: 0 0 0 rgba(71,30,255,0);
}
.pipeline__step:nth-child(2) .pipeline__node { animation: node-pulse 4s ease-in-out infinite; }
.pipeline__step:nth-child(3) .pipeline__node { animation: node-pulse 4s ease-in-out 1.3s infinite; }
.pipeline__step:nth-child(4) .pipeline__node { animation: node-pulse 4s ease-in-out 2.6s infinite; }
@keyframes node-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(195,14,255,0); }
50% { box-shadow: 0 0 20px 4px rgba(195,14,255,0.12); }
}
.pipeline__step:hover .pipeline__node {
border-color: rgba(195,14,255,0.35);
box-shadow: 0 0 28px rgba(195,14,255,0.12);
background: rgba(195,14,255,0.04);
}
.pipeline__step-title {
font-size: 0.88rem;
font-weight: 400;
margin-bottom: 6px;
}
.pipeline__step-desc {
font-size: 0.78rem;
color: var(--text-2);
line-height: 1.5;
font-weight: 300;
max-width: 180px;
margin: 0 auto;
}
/* ============================================
NUMBERS — STACKED STAT ROWS
============================================ */
.numbers {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
background: var(--bg-alt);
overflow: hidden;
}
.numbers::before, .numbers::after {
content: '';
position: absolute;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border-2) 30%, var(--border-2) 70%, transparent);
}
.numbers::before { top: 0; }
.numbers::after { bottom: 0; }
.numbers__list { display: flex; flex-direction: column; }
.numbers__row {
display: flex;
align-items: baseline;
justify-content: space-between;
padding: 22px 0;
border-bottom: 1px solid var(--border);
transition: all 0.3s;
}
.numbers__row:first-child { border-top: 1px solid var(--border); }
.numbers__row:hover { padding-left: 8px; background: rgba(71,30,255,0.015); }
.numbers__value {
font-family: 'Manrope', sans-serif;
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 300;
letter-spacing: -0.04em;
line-height: 1;
}
.numbers__meta { text-align: right; }
.numbers__label {
font-size: 0.82rem;
color: var(--text-3);
font-weight: 400;
text-align: right;
}
.numbers__detail {
font-size: 0.75rem;
color: var(--text-3);
font-weight: 300;
margin-top: 2px;
opacity: 0.7;
}
/* ============================================
SOCIAL PROOF — WALL OF LOVE
============================================ */
.social-proof {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
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: 300px;
flex-shrink: 0;
padding: 18px;
border-radius: 10px;
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 {
font-size: 0.78rem;
line-height: 1.55;
color: var(--text-2);
font-weight: 300;
margin-bottom: 12px;
font-style: italic;
}
.love-card__author { display: flex; align-items: center; gap: 10px; }
.love-card__avatar {
width: 32px;
height: 32px;
border-radius: 50%;
object-fit: cover;
border: 1px solid var(--border);
}
.love-card__name { font-size: 0.8rem; font-weight: 400; }
.love-card__role { font-size: 0.75rem; color: var(--text-3); }
/* ============================================
PRICING — 2 + ENTERPRISE BAR
============================================ */
.pricing {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
}
.pricing::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(195,14,255,0.03) 0%, transparent 60%);
pointer-events: none;
}
.pricing__duo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
max-width: 1000px;
margin: 0 auto 16px;
}
.pricing-card {
padding: 28px;
border-radius: var(--r-lg);
display: flex;
flex-direction: column;
border: 1px solid var(--border-2);
transition: all 0.3s;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.pricing-card--glow {
background: linear-gradient(180deg, rgba(71,30,255,0.05) 0%, rgba(195,14,255,0.015) 100%);
border-color: rgba(71,30,255,0.2);
box-shadow: 0 0 48px rgba(71,30,255,0.06);
}
.pricing-card--glow:hover {
border-color: rgba(71,30,255,0.3);
box-shadow: 0 0 60px rgba(71,30,255,0.1), 0 0 20px rgba(195,14,255,0.05);
}
.pricing-card__badge {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 12px;
border-radius: 100px;
background: rgba(71,30,255,0.1);
color: var(--cyan-light);
border: 1px solid rgba(71,30,255,0.2);
display: inline-block;
margin-bottom: 16px;
width: fit-content;
}
.pricing-card__name { font-size: 0.95rem; font-weight: 400; margin-bottom: 4px; }
.pricing-card__desc { font-size: 0.78rem; color: var(--text-3); margin-bottom: 18px; }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.pricing-card__amount {
font-family: 'Manrope', sans-serif;
font-size: 2.2rem;
font-weight: 300;
letter-spacing: -0.04em;
line-height: 1;
}
.pricing-card__period { font-size: 0.84rem; color: var(--text-3); }
.pricing-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.pricing-card__feature {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 0.78rem;
color: var(--text-2);
font-weight: 300;
}
.pricing-card__feature iconify-icon { color: var(--success); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing__enterprise {
max-width: 1000px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 28px;
border-radius: var(--r-lg);
border: 1px solid var(--border);
background: rgba(255,255,255,0.015);
transition: border-color 0.3s;
}
.pricing__enterprise:hover { border-color: rgba(255,255,255,0.12); }
.pricing__enterprise-info { display: flex; align-items: center; gap: 16px; }
.pricing__enterprise-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--surface-2);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
color: var(--cyan-light);
flex-shrink: 0;
}
.pricing__enterprise-text { display: flex; flex-direction: column; gap: 2px; }
.pricing__enterprise-name { font-size: 0.95rem; font-weight: 400; }
.pricing__enterprise-desc { font-size: 0.82rem; color: var(--text-3); }
/* ============================================
CTA — TERMINAL INSTALL
============================================ */
.cta-section {
padding: 56px 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
text-align: center;
overflow: hidden;
}
.cta-section__glow {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 600px;
height: 400px;
background: radial-gradient(ellipse, rgba(195,14,255,0.08) 0%, transparent 70%);
pointer-events: none;
}
.cta-section__content { position: relative; z-index: 1; }
.cta-section__title {
font-size: clamp(1.6rem, 3.5vw, 2.4rem);
font-weight: 300;
letter-spacing: -0.03em;
margin-bottom: 10px;
line-height: 1.1;
}
.cta-section__desc {
color: var(--text-2);
font-size: 0.85rem;
max-width: 400px;
margin: 0 auto 20px;
line-height: 1.65;
font-weight: 300;
}
.cta-terminal {
max-width: 480px;
margin: 0 auto 32px;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border-2);
text-align: left;
}
.cta-terminal__bar {
display: flex;
align-items: center;
padding: 10px 16px;
background: rgba(255,255,255,0.03);
border-bottom: 1px solid var(--border);
gap: 6px;
}
.cta-terminal__bar span {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255,255,255,0.08);
}
.cta-terminal__body {
padding: 16px 20px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.82rem;
color: var(--text-2);
background: rgba(4,7,17,0.9);
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.cta-terminal__copy {
cursor: pointer;
color: var(--text-3);
transition: color 0.2s;
background: none;
border: none;
padding: 4px;
}
.cta-terminal__copy:hover { color: var(--text); }
.cta-section__actions {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
/* ============================================
FOOTER
============================================ */
.footer {
padding: 48px 0 24px;
border-top: 1px solid var(--border);
}
.footer__grid {
display: grid;
grid-template-columns: 1.5fr repeat(3, 1fr);
gap: 36px;
margin-bottom: 36px;
}
.footer__brand { max-width: 260px; }
.footer__brand-logo {
font-family: 'Manrope', sans-serif;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: -0.03em;
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
}
.footer__brand-desc {
font-size: 0.8rem;
color: var(--text-3);
line-height: 1.6;
}
.footer__col-title {
font-size: 0.78rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--text-2);
margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
font-size: 0.82rem;
color: var(--text-3);
transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 32px;
border-top: 1px solid var(--border);
font-size: 0.78rem;
color: var(--text-3);
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
color: var(--text-3);
transition: color 0.2s;
font-size: 1.1rem;
}
.footer__social a:hover { color: var(--text); }
/* ============================================
RESPONSIVE
============================================ */
@media (max-width: 1024px) {
.capabilities__layout { grid-template-columns: 1fr; }
.capabilities__tabs {
flex-direction: row;
overflow-x: auto;
gap: 8px;
padding-bottom: 8px;
-webkit-overflow-scrolling: touch;
}
.cap-tab { white-space: nowrap; flex-shrink: 0; }
.pricing__duo { grid-template-columns: 1fr; max-width: 420px; }
.pricing__enterprise { flex-direction: column; text-align: center; gap: 16px; }
.pricing__enterprise-info { flex-direction: column; }
.pricing__enterprise .btn { width: 100%; justify-content: center; }
.footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@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(4,7,17,0.95);
backdrop-filter: blur(20px);
padding: 24px;
gap: 20px;
border-bottom: 1px solid var(--border);
}
.hero { padding-top: 80px; height: auto; min-height: 100vh; padding-bottom: 32px; }
.hero__bottom { margin-bottom: 40px; }
.hero__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
.trust-bar__inner { gap: 20px; padding: 16px 20px; }
.trust-bar__item { font-size: 0.8rem; }
.pipeline__flow { flex-direction: column; gap: 48px; align-items: center; }
.pipeline__line { display: none; }
.pipeline__step { max-width: 280px; }
.numbers__row { flex-direction: column; text-align: center; gap: 8px; }
.numbers__label { text-align: center; }
.platform__terminal { margin: 0 -12px; border-radius: 12px; overflow: hidden; }
.platform__terminal-body { font-size: 0.75rem; padding: 20px; }
.cap-tiles { grid-template-columns: 1fr; }
.footer__grid { grid-template-columns: 1fr; gap: 32px; }
.footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
.hero__actions { flex-direction: column; width: 100%; }
.hero__actions .btn { width: 100%; justify-content: center; }
.platform__features { grid-template-columns: repeat(2, 1fr); }
.container { padding: 0 16px; }
.trust-bar__inner { gap: 12px; padding: 14px; flex-direction: column; align-items: flex-start; width: 100%; }
.cta-terminal { margin: 0 -8px 32px; border-radius: 8px; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.reveal, .reveal-scale, .stagger-up .reveal-child {
opacity: 1 !important;
transform: none !important;
}
}
