/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
    --bg: #010828;
    --cream: #EFF4FF;
    --neon: #6FFF00;
    --font-anton: 'Anton', sans-serif;
    --font-condiment: 'Condiment', cursive;
    --font-mono: 'Monaco', 'Menlo', 'Courier New', monospace;
    --trans: 0.15s ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: var(--font-mono); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
strong { color: var(--cream); font-weight: 700; }
input, select, textarea { font-family: var(--font-mono); }

/* ─── TEXTURE OVERLAY ────────────────────────────────────── */
.texture-overlay {
    position: fixed; inset: 0; z-index: 999; pointer-events: none;
    background: url('/texture.png') center / cover;
    mix-blend-mode: lighten; opacity: 0.06;
}

/* ─── LIQUID GLASS ───────────────────────────────────────– */
.liquid-glass {
    background: rgba(255,255,255,0.01);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.45) 0%,  rgba(255,255,255,0.15) 20%,
        rgba(255,255,255,0)    40%, rgba(255,255,255,0)    60%,
        rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ─── ACCENT TEXT ────────────────────────────────────────── */
.accent {
    font-family: var(--font-condiment);
    font-size: 32px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.neon { color: var(--neon); font-weight: 600; }
.s-title {
    font-family: var(--font-anton);
    font-size: clamp(28px, 5vw, 60px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 48px;
}

/* ─── SECTION 1: HERO ────────────────────────────────────── */
.s-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    border-radius: 0 0 40px 40px;
}
.vid-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.vid-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, #010828 0%, #020d3a 50%, #010828 100%);
    background-size: 200% 200%;
    animation: fluid-dark 12s ease infinite;
}
.vid-bg video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; opacity: 0.5;
}
.hero-body { position: relative; z-index: 10; max-width: 900px; padding: 120px 24px; }
.hero-title {
    font-family: var(--font-anton);
    font-size: clamp(42px, 7.5vw, 110px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 24px;
    font-weight: 900;
}
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    opacity: 0.85;
    max-width: 720px;
    margin: 0 auto;
}

/* ─── SECTION 2: TRY NOW ─────────────────────────────────── */
.s-try { background: var(--bg); padding: 120px 32px; }
.try-wrap { max-width: 1200px; margin: 0 auto; }
.step-container { margin-bottom: 48px; }
.step-label {
    font-family: var(--font-anton);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 12px;
}
.step-box { border-radius: 12px; padding: 36px; }
.step-title {
    font-family: var(--font-anton);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    display: block;
}

/* ─── SECTION 3: WHY ─────────────────────────────────────── */
.s-why { padding: 120px 32px; background: var(--bg); }
.why-wrap { max-width: 1200px; margin: 0 auto; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.benefit-card { border-radius: 12px; padding: 48px 32px; text-align: center; }
.benefit-label { font-size: 48px; margin-bottom: 16px; }
.benefit-title {
    font-family: var(--font-anton);
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.benefit-desc { font-size: 14px; opacity: 0.72; line-height: 1.6; }

/* ─── SECTION 4: HOW ─────────────────────────────────────── */
.s-how { padding: 120px 32px; background: var(--bg); }
.how-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.how-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.how-icon { font-size: 48px; }
.how-label { font-family: var(--font-anton); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.how-arrow { font-size: 24px; opacity: 0.5; }
.how-note { font-size: 13px; opacity: 0.65; line-height: 1.6; }

/* ─── SECTION 5: FOOTER ──────────────────────────────────– */
.footer {
    background: rgba(0,0,0,0.25);
    text-align: center;
    padding: 40px 24px;
    font-size: 13px;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer a { color: var(--neon); }
.footer p { margin: 8px 0; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fluid-dark {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-title { font-size: 36px; }
    .s-hero, .s-try { border-radius: 0; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .step-box { padding: 24px; }
    .how-arrow { font-size: 18px; }
}

/* ─── IMPORT COMPONENTS ──────────────────────────────────– */
@import url('style-components.css');
