:root {
--bg: #090b10;
--panel: rgba(12, 16, 24, 0.62);
--panel-strong: rgba(17, 22, 32, 0.82);
--border: rgba(255, 255, 255, 0.12);
--text: #eef2ff;
--muted: #b9c1d9;
--accent: #8ab4ff;
--accent-2: #b388ff;
--shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
--radius: 24px;
--max: 1180px;
}

* {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
overflow-x: hidden;
}

a {
color: inherit;
text-decoration: none;
}

.wrapper {
animation: scroll 100s linear infinite;
background: linear-gradient(rgba(6, 10, 18, 0.74), rgba(6, 10, 18, 0.84)),
    url("https://images.unsplash.com/photo-1465146633011-14f8e0781093?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3450&q=80"),
    #111111;
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
width: 100%;
position: relative;
}

.wrapper::before,
.wrapper::after {
content: "";
position: fixed;
inset: auto;
width: 42vw;
height: 42vw;
border-radius: 50%;
filter: blur(70px);
opacity: 0.14;
pointer-events: none;
z-index: 0;
}

.wrapper::before {
top: 8%;
left: -10%;
background: var(--accent);
animation: floatBlob 12s ease-in-out infinite;
}

.wrapper::after {
bottom: 2%;
right: -10%;
background: var(--accent-2);
animation: floatBlob 14s ease-in-out infinite reverse;
}

@keyframes scroll {
100% {
    background-position: center, 0px -400%, center;
}
}

@keyframes floatBlob {
0%,
100% {
    transform: translateY(0px) translateX(0px) scale(1);
}
50% {
    transform: translateY(-18px) translateX(16px) scale(1.08);
}
}

@keyframes fadeUp {
from {
    opacity: 0;
    transform: translateY(28px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes pulseGlow {
0%,
100% {
    box-shadow: 0 0 0 rgba(138, 180, 255, 0);
}
50% {
    box-shadow: 0 0 30px rgba(138, 180, 255, 0.18);
}
}

.site-shell {
position: relative;
z-index: 1;
}

.nav {
position: sticky;
top: 0;
z-index: 10;
width: min(calc(100% - 24px), var(--max));
margin: 0 auto;
padding: 18px 22px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 18px;
border: 1px solid var(--border);
border-radius: 999px;
background: rgba(8, 11, 18, 0.58);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: var(--shadow);
}

.brand {
display: flex;
align-items: center;
gap: 12px;
font-weight: 700;
letter-spacing: 0.04em;
}

.brand-mark {
width: 12px;
height: 12px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent), var(--accent-2));
box-shadow: 0 0 24px rgba(138, 180, 255, 0.5);
}

.nav-links {
display: flex;
gap: 18px;
flex-wrap: wrap;
}

.nav-links a {
color: var(--muted);
font-size: 0.95rem;
transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
color: var(--text);
transform: translateY(-1px);
}

.container {
width: min(calc(100% - 24px), var(--max));
margin: 0 auto;
}

.hero {
min-height: 100vh;
display: grid;
align-items: center;
padding: 110px 0 64px;
}

.hero-grid {
display: grid;
grid-template-columns: 1.3fr 0.9fr;
gap: 28px;
align-items: center;
}

.glass-card {
background: var(--panel);
border: 1px solid var(--border);
border-radius: var(--radius);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.section-card,
.feature,
.stat,
.cta-card,
.footer-card {
animation: fadeUp 0.8s ease both;
}

.hero-copy {
padding: 40px;
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--muted);
font-size: 0.92rem;
margin-bottom: 18px;
letter-spacing: 0.03em;
}

.eyebrow::before {
content: "";
width: 32px;
height: 1px;
background: rgba(255, 255, 255, 0.3);
}

h1,
h2,
h3 {
margin: 0;
line-height: 1.02;
}

h1 {
font-size: clamp(3rem, 7vw, 6rem);
letter-spacing: -0.06em;
}

.hero-copy p {
margin: 22px 0 0;
font-size: 1.08rem;
line-height: 1.75;
color: var(--muted);
max-width: 62ch;
}

.hero-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 30px;
}

.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 20px;
border-radius: 999px;
border: 1px solid var(--border);
transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
transform: translateY(-2px);
}

.button.primary {
background: linear-gradient(135deg, rgba(138, 180, 255, 0.2), rgba(179, 136, 255, 0.22));
border-color: rgba(255, 255, 255, 0.18);
animation: pulseGlow 3.2s ease-in-out infinite;
}

.button.secondary {
background: rgba(255, 255, 255, 0.04);
color: var(--muted);
}

.hero-panel {
padding: 24px;
position: relative;
}

.hero-panel::after {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px;
background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}

.mini-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}

.stat {
padding: 20px;
min-height: 140px;
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 20px;
transition: transform 220ms ease, background 220ms ease;
}

.stat:hover,
.feature:hover,
.section-card:hover {
transform: translateY(-6px);
background: rgba(255, 255, 255, 0.06);
}

.stat .num {
font-size: 1.9rem;
font-weight: 800;
letter-spacing: -0.04em;
}

.stat .label {
margin-top: 10px;
color: var(--muted);
line-height: 1.6;
}

main {
padding-bottom: 72px;
}

.section {
padding: 22px 0;
}

.section-card {
padding: 34px;
}

.section-head {
display: flex;
justify-content: space-between;
gap: 24px;
align-items: end;
margin-bottom: 24px;
}

.section-head p {
color: var(--muted);
max-width: 62ch;
margin: 0;
line-height: 1.7;
}

.section h2 {
font-size: clamp(2rem, 4vw, 3rem);
letter-spacing: -0.05em;
}

.features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}

.feature {
padding: 22px;
background: rgba(255, 255, 255, 0.035);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 22px;
transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.feature:hover {
border-color: rgba(255, 255, 255, 0.16);
}

.feature-icon {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border-radius: 14px;
background: linear-gradient(135deg, rgba(138,180,255,0.18), rgba(179,136,255,0.16));
margin-bottom: 16px;
}

.feature p,
.split-copy p,
.cta-card p,
.footer-meta {
color: var(--muted);
line-height: 1.7;
}

.split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}

.split-copy {
padding: 22px;
background: rgba(255,255,255,0.035);
border-radius: 22px;
border: 1px solid rgba(255,255,255,0.08);
}

.cta-card {
padding: 34px;
text-align: center;
background: linear-gradient(180deg, rgba(12,16,24,0.72), rgba(11,14,22,0.84));
}

.footer {
padding: 0 0 32px;
}

.footer-card {
padding: 22px 24px;
display: flex;
justify-content: space-between;
gap: 18px;
align-items: center;
}

.footer-links {
display: flex;
gap: 16px;
flex-wrap: wrap;
color: var(--muted);
}

.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
opacity: 1;
transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
html {
    scroll-behavior: auto;
}

.wrapper {
    animation: scroll 800s linear infinite;
    background-attachment: scroll;
}

*,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}
}

@media (max-width: 980px) {
.hero-grid,
.split,
.features {
    grid-template-columns: 1fr;
}

.section-head,
.footer-card,
.nav {
    flex-direction: column;
    align-items: flex-start;
}

.nav {
    border-radius: 28px;
}
}

@media (max-width: 640px) {
.container,
.nav {
    width: min(calc(100% - 16px), var(--max));
}

.hero-copy,
.hero-panel,
.section-card,
.cta-card,
.footer-card {
    padding: 22px;
}

h1 {
    font-size: 2.8rem;
}

.mini-grid {
    grid-template-columns: 1fr;
}
}