/* ================================================================
   ZINC ADDON v7 — ZINC / VIOLET THEME
   Violet Brand Gradient · Bold Typography · Animated Borders
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ========== VARIABLES ========== */
:root {
    --bg: #04050c;
    --bg-2: #14121f;
    --bg-card: rgba(20, 18, 31, 0.55);
    --bg-card-hover: rgba(20, 18, 31, 0.8);

    --ember-1: #7b2fff;
    --ember-2: #4f1ab8;
    --ember-3: #a855f7;
    --ember-gradient: linear-gradient(135deg, #a855f7, #7b2fff, #4f1ab8);
    --ember-gradient-h: linear-gradient(90deg, #a855f7, #7b2fff, #4f1ab8);
    --ember-glow: rgba(123, 47, 255, 0.18);
    --ember-glow-2: rgba(79, 26, 184, 0.12);

    --text: #f3f4fb;
    --text-2: #a0a3b8;
    --text-3: #5a5a80;

    --border: rgba(255, 255, 255, 0.06);
    --border-2: rgba(255, 255, 255, 0.1);

    --font-display: 'Sora', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ember-1), var(--ember-2));
    border-radius: 4px;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.mc-decorations {
    display: none !important;
}

/* ========== EMBER CANVAS ========== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========== GRADIENT LINE SEPARATOR ========== */
.gradient-line {
    width: 100%;
    height: 1px;
    background: var(--ember-gradient-h);
    opacity: 0.15;
    position: relative;
    z-index: 2;
}

/* ========== MARQUEE BANNER ========== */
.marquee-wrap {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(123, 47, 255, 0.02);
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
    gap: 48px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-2);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.marquee-item .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ember-1);
    box-shadow: 0 0 8px var(--ember-glow);
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 780px;
    z-index: 1000;
    padding: 0 6px;
    border-radius: var(--radius-full);
    background: rgba(12, 10, 9, 0.75);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(12, 10, 9, 0.92);
    border-color: var(--border-2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ember-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    color: white;
    transition: all 0.4s var(--spring);
}

.nav-logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.12);
    box-shadow: 0 0 24px var(--ember-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.25s var(--ease);
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--ember-gradient) !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 6px 18px !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    box-shadow: 0 0 24px var(--ember-glow) !important;
    transform: translateY(-1px) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 28px 80px;
    overflow: hidden;
}

/* Top gradient glow */
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(123, 47, 255, 0.08) 0%, rgba(79, 26, 184, 0.04) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-left {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(123, 47, 255, 0.06);
    border: 1px solid rgba(123, 47, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ember-1);
    margin-bottom: 28px;
    animation: fadeInUp 0.7s var(--ease) both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ember-1);
    box-shadow: 0 0 8px var(--ember-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s var(--ease) 0.1s both;
}

.hero h1 .highlight {
    background: var(--ember-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s var(--ease) 0.2s both;
}

.hero-description strong {
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s var(--ease) 0.3s both;
}

/* Hero right — visual stats card */
.hero-right {
    animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-visual {
    position: relative;
    padding: 36px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

/* Animated gradient border via pseudo */
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--ember-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.hero-visual:hover::before {
    opacity: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    background: var(--bg-2);
    z-index: -1;
}

.hero-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.hero-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-visual-dot.d1 {
    background: #4f1ab8;
}

.hero-visual-dot.d2 {
    background: #7b2fff;
}

.hero-visual-dot.d3 {
    background: #22c55e;
}

.hero-visual-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-3);
    margin-left: 6px;
}

.vis-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vis-stat {
    padding: 16px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.vis-stat:hover {
    border-color: rgba(123, 47, 255, 0.15);
    background: rgba(123, 47, 255, 0.03);
    transform: translateY(-2px);
}

.vis-stat-value {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: var(--ember-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vis-stat-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
}

/* Old .hero-stats hidden — using new visual */
.hero-stats {
    display: none;
}

.stat-value,
.stat-label,
.stat {
    display: none;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    background: var(--ember-gradient);
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--ember-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(123, 47, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.97);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-2);
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.97);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    background: var(--ember-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -16px;
    letter-spacing: -4px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: rgba(123, 47, 255, 0.06);
    border: 1px solid rgba(123, 47, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ember-1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label svg {
    width: 12px;
    height: 12px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    line-height: 1.1;
}

.section-header p {
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.section-header p strong {
    color: var(--text);
}

/* ========== FEATURES ========== */
.features {
    position: relative;
    z-index: 2;
    padding: 100px 28px 120px;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Card with animated gradient border */
.feature-card {
    position: relative;
    padding: 32px 26px;
    border-radius: var(--radius);
    background: var(--bg-2);
    overflow: hidden;
    transition: transform 0.4s var(--ease);
    z-index: 1;
}

/* Gradient border wrapper */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.15), rgba(79, 26, 184, 0.1), rgba(168, 85, 247, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.4s var(--ease);
}

.feature-card:hover::before {
    background: var(--ember-gradient);
    opacity: 0.6;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(123, 47, 255, 0.08);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(79, 26, 184, 0.08);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(168, 85, 247, 0.08);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(34, 197, 94, 0.08);
}

.feature-card:nth-child(5) .feature-icon {
    background: rgba(56, 189, 248, 0.08);
}

.feature-card:nth-child(6) .feature-icon {
    background: rgba(168, 85, 247, 0.08);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--ember-glow);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-2);
    font-size: 0.85rem;
    line-height: 1.7;
}

.feature-card p strong {
    color: var(--text);
    font-weight: 600;
}

/* Hide bento card-gradient overlay from v6 */
.card-gradient {
    display: none;
}

.feature-card.featured {
    grid-column: auto;
}

/* ========== FAQ ========== */
.faq {
    position: relative;
    z-index: 2;
    padding: 100px 28px 120px;
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-sm);
    background: var(--bg-2);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    border-color: var(--border-2);
}

.faq-item.active {
    border-color: rgba(123, 47, 255, 0.2);
    background: rgba(123, 47, 255, 0.02);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    transition: all 0.2s var(--ease);
    user-select: none;
}

.faq-question:hover {
    color: var(--ember-1);
}

.faq-arrow {
    font-size: 0.65rem;
    color: var(--text-3);
    transition: all 0.35s var(--ease);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--ember-1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--text-2);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* ========== CTA ========== */
.cta-section {
    position: relative;
    z-index: 2;
    padding: 80px 28px 120px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 72px 48px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-2);
}

/* Animated gradient border */
.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--ember-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Inner gradient glow */
.cta-content::after {
    content: '';
    position: absolute;
    top: -80%;
    left: 20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(123, 47, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    color: var(--text-2);
    margin-bottom: 32px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.cta-content .btn-primary {
    position: relative;
    z-index: 1;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 2;
    padding: 60px 28px 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent 0%, rgba(123, 47, 255, 0.015) 100%);
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 320px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-3);
    font-size: 0.82rem;
    line-height: 1.7;
}

.footer-brand p strong {
    color: var(--text-2);
}

.footer-links {
    display: flex;
    gap: 28px;
    align-items: center;
    padding-top: 6px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-3);
    transition: all 0.25s var(--ease);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ember-1);
    transition: width 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-col {
    display: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    font-size: 0.72rem;
    color: var(--text-3);
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 6px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-xs);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
    border-color: rgba(123, 47, 255, 0.2);
    color: var(--ember-1);
    background: rgba(123, 47, 255, 0.05);
    transform: translateY(-2px);
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        gap: 20px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-stagger>.reveal:nth-child(1) {
    transition-delay: 0s;
}

.reveal-stagger>.reveal:nth-child(2) {
    transition-delay: 0.07s;
}

.reveal-stagger>.reveal:nth-child(3) {
    transition-delay: 0.14s;
}

.reveal-stagger>.reveal:nth-child(4) {
    transition-delay: 0.21s;
}

.reveal-stagger>.reveal:nth-child(5) {
    transition-delay: 0.28s;
}

.reveal-stagger>.reveal:nth-child(6) {
    transition-delay: 0.35s;
}

.gradient-text {
    background: var(--ember-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        order: -1;
    }

    .hero {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 32px);
        top: 12px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 270px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border-left: 1px solid var(--border);
        transition: all 0.35s var(--ease);
        padding: 40px 24px;
        backdrop-filter: blur(24px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .vis-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .section-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .navbar {
        width: calc(100% - 24px);
        top: 8px;
    }

    .vis-stats {
        grid-template-columns: 1fr;
    }
}