:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --bg-section-alt: #08080d;
    --text: #e8e8ec;
    --text-muted: #8888a0;
    --text-dim: #555570;
    --accent: #7c5cff;
    --accent-glow: #7c5cff40;
    --accent-2: #00d4aa;
    --gradient-text: linear-gradient(135deg, #7c5cff, #00d4aa);
    --border: #1e1e30;
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* NAV */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 860px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text); font-weight: 700; font-size: 1.1rem;
}
.logo-icon {
    font-size: 1.4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-dot { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    text-decoration: none; color: var(--text-muted); font-size: 0.9rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 8px; font-size: 0.9rem;
    font-weight: 600; text-decoration: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none;
}
.btn-primary {
    background: var(--accent); color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
    background: #6b4be8;
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent; color: var(--text-muted);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    color: var(--text); border-color: var(--text-dim);
    background: rgba(255,255,255,0.03);
}
.btn-small { padding: 6px 16px; font-size: 0.82rem; }
.btn-large { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }

/* HERO */
#hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(130px); opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--accent-2); bottom: -50px; left: -50px; animation-delay: -8s; }
.orb-3 { width: 250px; height: 250px; background: #5c8cff; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -16s; opacity: 0.1; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 640px; }
#hero h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.04em; margin-bottom: 24px;
}
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 480px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; }
.hero-sub strong { color: var(--text); font-weight: 600; }

/* PROVIDERS STRIP (inside hero) */
.hero-providers {
    margin-top: 48px;
}
.providers-label {
    text-align: center; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-dim); font-weight: 500;
    margin-bottom: 14px;
}
.providers-strip {
    display: flex; justify-content: center; align-items: center;
    gap: 0; flex-wrap: wrap;
}
.provider-item {
    font-size: 0.88rem; font-weight: 600;
    color: var(--text-muted); letter-spacing: -0.01em;
    transition: color 0.2s;
}
.provider-item:hover { color: var(--text); }
.prov-dot {
    color: var(--text-dim); margin: 0 12px; font-size: 1.2rem;
    line-height: 1; vertical-align: middle;
}
.provider-more {
    color: var(--accent) !important; font-weight: 700;
}
/* Pricing page keeps standalone version */
.providers {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}
.providers .providers-strip {
    gap: 0;
}

/* SECTIONS */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-section-alt); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-lead {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--accent-2);
    font-weight: 600; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
}
.section-desc {
    max-width: 480px; margin: 16px auto 0;
    color: var(--text-muted); font-size: 0.95rem;
}

/* PROBLEM */
.problem-block { text-align: center; }
.problem-block h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800; line-height: 1.2;
    letter-spacing: -0.02em; margin-bottom: 40px;
}
.problem-list {
    max-width: 560px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 20px;
}
.problem-item {
    display: flex; align-items: flex-start; gap: 16px;
    text-align: left; padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.problem-icon { font-size: 1.5rem; flex-shrink: 0; }
.problem-item p {
    font-size: 0.92rem; color: var(--text-muted); line-height: 1.55;
}
.problem-item strong { color: var(--text); }

/* POWER GRID (features) */
.power-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.power-card {
    padding: 28px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.3s ease;
}
.power-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(124, 92, 255, 0.2);
    transform: translateY(-3px);
}
.power-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.05), rgba(0, 212, 170, 0.02));
    border-color: rgba(124, 92, 255, 0.2);
}
.power-icon { font-size: 1.6rem; margin-bottom: 12px; }
.power-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.power-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.power-card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.power-card a:hover { text-decoration: underline; }

/* REVEAL (transition to character tease) */
.reveal-block {
    text-align: center;
    margin-bottom: 56px;
}
.reveal-lead {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-dim);
    font-weight: 600; margin-bottom: 20px;
}
.reveal-big {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; line-height: 1.15;
    letter-spacing: -0.02em;
}

/* TEASE GRID (character hints) */
.tease-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-bottom: 48px;
}
.tease-card {
    padding: 32px 20px; text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}
.tease-card:hover {
    border-color: rgba(124, 92, 255, 0.3);
    transform: translateY(-4px);
}
.tease-question {
    font-size: 0.9rem; color: var(--text-dim);
    margin-bottom: 8px; line-height: 1.5;
}
.tease-answer {
    font-size: 1.15rem; font-weight: 700;
    color: var(--text); line-height: 1.3;
}
.tease-answer em {
    font-style: normal;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tease-cta {
    text-align: center;
}
.tease-cta p {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.8; max-width: 500px;
    margin: 0 auto;
}
.text-accent { color: var(--accent-2); font-weight: 600; }

/* CTA */
.cta-box {
    text-align: center; padding: 64px 40px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.05), rgba(0, 212, 170, 0.02));
    border: 1px solid rgba(124, 92, 255, 0.12);
    border-radius: var(--radius-lg);
}
.cta-label {
    font-size: 0.78rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--accent);
    font-weight: 600; margin-bottom: 16px;
}
.cta-box h2 {
    font-size: 1.6rem; font-weight: 800;
    margin-bottom: 16px; line-height: 1.3;
}
.cta-box p {
    color: var(--text-muted); margin-bottom: 28px;
    font-size: 1rem; max-width: 420px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-left { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-dim); }
.footer-center { font-size: 0.82rem; color: var(--text-dim); }
.footer-center a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-center a:hover { color: var(--accent); }
.footer-dot { margin: 0 8px; }
.footer-right { font-size: 0.82rem; color: var(--text-dim); }
.footer-right a { color: var(--text-muted); text-decoration: none; }
.footer-right a:hover { color: var(--accent); }

/* LEGAL PAGES */
.legal-page { padding: 120px 24px 80px; max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-page .legal-updated { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.legal-page h3 { font-size: 1.05rem; font-weight: 600; margin-top: 28px; margin-bottom: 8px; color: var(--text-muted); }
.legal-page p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.legal-page strong { color: var(--text); font-weight: 600; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .nav-links a:not(.btn) { display: none; }
    .power-grid { grid-template-columns: 1fr; }
    .tease-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 24px; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
