:root {
    color-scheme: dark;
    --bg: #070912;
    --surface: #0d1120;
    --surface-strong: #111827;
    --text: #f7f7fb;
    --muted: #a5adc8;
    --accent: #9b59ff;
    --accent-soft: rgba(155, 89, 255, 0.18);
    --border: rgba(255, 255, 255, 0.08);

    /* :root {
  --primary: #a855f7;
  --primary-dark: #7e22ce;
  --primary-light: #c084fc;
}
   
  :root {
  --bg-main: #05010a;
  --bg-secondary: #0b0613;
  --bg-card: #111018;
}

:root {
  --text-main: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
}

:root {
  --accent-purple-glow: #9333ea;
  --accent-pink: #ec4899;
}

background: linear-gradient(90deg, #a855f7, #9333ea);

:root {
  --primary: #a855f7;
  --bg: #05010a;
  --text: #ffffff;
}

body {
  background: var(--bg);
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), #9333ea);
}


*/
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, rgba(155, 89, 255, 0.12), transparent 30%),
                linear-gradient(180deg, #080a10 0%, #07080f 100%);
    color: var(--text);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(7, 9, 18, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: rgba(155, 89, 255, 0.16);
    color: var(--accent);
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.4rem;
    text-decoration: none;
    border: 1px solid rgba(155, 89, 255, 0.35);
    border-radius: 999px;
    color: var(--accent);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-button:hover {
    background: rgba(155, 89, 255, 0.18);
    border-color: rgba(155, 89, 255, 0.55);
    transform: translateY(-2px);
}

.hero {
    padding: 3.5rem 0 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1.6rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.95rem;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 4vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.accent {
    color: var(--accent);
}

.hero-text {
    margin: 1.8rem 0 2.5rem;
    max-width: 32rem;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #9b59ff, #6f42ff);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(107, 66, 255, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(155, 89, 255, 0.45);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(155, 89, 255, 0.14);
    border-color: rgba(155, 89, 255, 0.65);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero-features {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    display: flex;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(155, 89, 255, 0.1);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(155, 89, 255, 0.14);
    color: var(--accent);
    font-size: 1.1rem;
}

.feature-card strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.section {
    padding: 4rem 0;
}

.info-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.info-grid h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.05;
}

.info-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.info-list {
    display: grid;
    gap: 1.2rem;
}

.info-list div {
    padding: 1.4rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-list strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

@media (max-width: 980px) {
    .hero-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
    }
}

@media (max-width: 680px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}
