/* ═══════════════════════════════════════════════════════════════
   BunnyLive — style.css
   Save as: public/new-assets/sytle.css
   ═══════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0014; }
::-webkit-scrollbar-thumb { background: #a855f7; border-radius: 99px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
    --ink:           #ffffff;
    --ink-muted:     rgba(255,255,255,0.55);
    --ink-subtle:    rgba(255,255,255,0.22);
    --bg:            #08000f;
    --surface:       rgba(255,255,255,0.04);
    --surface-hover: rgba(255,255,255,0.08);
    --surface-card:  rgba(255,255,255,0.045);
    --border:        rgba(255,255,255,0.08);
    --border-hover:  rgba(168,85,247,0.35);
    --purple:        #a855f7;
    --purple-dim:    rgba(168,85,247,0.15);
    --purple-light:  #d8b4fe;
    --pink:          #ec4899;
    --pink-dim:      rgba(236,72,153,0.15);
    --grad:          linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --grad-soft:     linear-gradient(135deg, rgba(168,85,247,0.2) 0%, rgba(236,72,153,0.2) 100%);
    --grad-text:     linear-gradient(100deg, #f0abfc 0%, #fde68a 45%, #f9a8d4 100%);
    --radius:        18px;
    --radius-sm:     10px;
    --radius-xs:     6px;
    --font-display:  'Syne', sans-serif;
    --font-body:     'DM Sans', sans-serif;
    --shadow-glow:   0 0 80px rgba(168,85,247,0.2);
    --shadow-card:   0 8px 40px rgba(0,0,0,0.45);
    --shadow-btn:    0 6px 28px rgba(168,85,247,0.45);

    /* spacing scale */
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  48px;
    --space-xl:  80px;
    --space-2xl: 120px;
}

/* ── GLOBAL BODY ──────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.45;
}

/* ── AMBIENT ORBS ─────────────────────────────────────────────── */
.orb-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    will-change: transform;
}

.orb-1 {
    width: clamp(400px, 60vw, 750px);
    height: clamp(400px, 60vw, 750px);
    background: radial-gradient(circle, #7c3aed, #4c1d95);
    top: -25%;
    left: -20%;
    opacity: 0.16;
    animation: driftA 20s ease-in-out infinite;
}

.orb-2 {
    width: clamp(300px, 45vw, 550px);
    height: clamp(300px, 45vw, 550px);
    background: radial-gradient(circle, #ec4899, #9d174d);
    top: 35%;
    right: -15%;
    opacity: 0.14;
    animation: driftB 16s ease-in-out infinite;
}

.orb-3 {
    width: clamp(250px, 40vw, 450px);
    height: clamp(250px, 40vw, 450px);
    background: radial-gradient(circle, #6366f1, #312e81);
    bottom: -10%;
    left: 25%;
    opacity: 0.12;
    animation: driftC 22s ease-in-out infinite;
}

@keyframes driftA {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(60px,40px) scale(1.08); }
    66%       { transform: translate(-30px,70px) scale(0.96); }
}
@keyframes driftB {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(-70px,50px) scale(0.92); }
    66%       { transform: translate(40px,-40px) scale(1.06); }
}
@keyframes driftC {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%       { transform: translate(50px,-60px) scale(1.1); }
}

/* ── UTILITIES ────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 220% auto;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 220% center; }
}

/* Scroll-triggered fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PILL BADGE ───────────────────────────────────────────────── */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.28);
    color: var(--purple-light);
    padding: 7px 18px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: blinkDot 1.6s ease-in-out infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

nav.scrolled {
    background: rgba(8, 0, 15, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(16px, 4vw, 32px);
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-links a {
    color: var(--ink-muted);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 1px;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: white;
    padding: 10px 22px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-btn);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(168,85,247,0.55);
}

.nav-mobile-toggle {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    color: white;
    font-size: 1.15rem;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.nav-mobile-toggle:hover { background: var(--surface-hover); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 0, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 40px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    font-weight: 800;
    color: var(--ink-muted);
    transition: color 0.2s, transform 0.2s;
    text-align: center;
}

.mobile-nav a:hover {
    color: var(--ink);
    transform: scale(1.04);
}

.mobile-nav-close {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.mobile-nav-close:hover { background: var(--surface-hover); }

/* Mobile CTA inside nav overlay */
.mobile-nav .nav-cta-mobile {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grad);
    color: white;
    padding: 14px 32px;
    border-radius: 99px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-btn);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(100px, 15vh, 140px) clamp(16px, 4vw, 32px) clamp(80px, 10vh, 100px);
    z-index: 1;
}

.hero-content {
    max-width: 780px;
    width: 100%;
}

.hero-eyebrow { margin-bottom: 24px; }

/* Live strip */
.live-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 63, 94, 0.09);
    border: 1px solid rgba(244, 63, 94, 0.22);
    border-radius: 99px;
    padding: 9px 20px;
    margin-bottom: 36px;
    font-size: 0.85rem;
    color: #fda4af;
}

.live-strip strong { font-weight: 600; }

.live-dot {
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(244,63,94,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(244,63,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,63,94,0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 span { display: block; }

.hero-sub {
    color: var(--ink-muted);
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    line-height: 1.72;
    max-width: 540px;
    margin: 0 auto 44px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--ink-subtle);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bobDown 2.2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes bobDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad);
    color: white;
    padding: clamp(13px, 2vw, 17px) clamp(24px, 4vw, 34px);
    border-radius: 99px;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: transform 0.22s, box-shadow 0.22s, opacity 0.22s;
    box-shadow: var(--shadow-btn);
    font-family: var(--font-display);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(168,85,247,0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--border);
    padding: clamp(13px, 2vw, 17px) clamp(24px, 4vw, 34px);
    border-radius: 99px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
    font-family: var(--font-display);
    backdrop-filter: blur(12px);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 64px) 0;
    background: linear-gradient(90deg,
    rgba(168,85,247,0.07) 0%,
    rgba(236,72,153,0.07) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: clamp(16px, 3vw, 28px) clamp(12px, 2vw, 24px);
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--ink-muted);
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
    letter-spacing: 0.02em;
}

/* ── SECTION COMMON ───────────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--ink-muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.72;
    max-width: 500px;
    font-weight: 300;
}

.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── FEATURES SECTION ─────────────────────────────────────────── */
.features-section {
    padding: clamp(64px, 10vw, 110px) 0;
}

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

.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 38px) clamp(20px, 3.5vw, 32px);
    transition: transform 0.32s ease, border-color 0.32s ease,
    background 0.32s ease, box-shadow 0.32s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.32s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-9px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 64px rgba(168,85,247,0.14);
}

.feature-card:hover::after { opacity: 0.05; }

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: var(--grad-soft);
    border: 1px solid rgba(168,85,247,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-section {
    padding: clamp(64px, 10vw, 110px) 0;
    background: linear-gradient(180deg,
    transparent 0%,
    rgba(168,85,247,0.04) 40%,
    rgba(236,72,153,0.04) 60%,
    transparent 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connector line */
.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 36px rgba(168,85,247,0.38);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover .step-num {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 16px 48px rgba(168,85,247,0.5);
}

.step h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 220px;
    margin: 0 auto;
}

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-section { padding: clamp(64px, 10vw, 110px) 0; }

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

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    transition: border-color 0.3s;
}

.gallery-card:hover { border-color: var(--border-hover); }

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gallery-card:hover img { transform: scale(1.06); }

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    rgba(8,0,15,0.92) 0%,
    rgba(8,0,15,0.3) 45%,
    transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: clamp(18px, 3vw, 28px);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-overlay h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-card-overlay p {
    color: rgba(255,255,255,0.72);
    font-size: clamp(0.8rem, 1.5vw, 0.88rem);
    line-height: 1.5;
}

/* Placeholder when image fails */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--surface-card);
}

.gallery-placeholder-icon { font-size: 2.8rem; opacity: 0.25; }
.gallery-placeholder-text { color: var(--ink-subtle); font-size: 0.82rem; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section { padding: clamp(64px, 10vw, 110px) 0; }

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

.testimonial-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(22px, 3.5vw, 32px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-hover);
    box-shadow: 0 16px 56px rgba(168,85,247,0.12);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.92rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--ink-muted);
    font-size: 0.92rem;
    line-height: 1.72;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 13px; }

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(168,85,247,0.3);
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.94rem;
}

.testimonial-role {
    color: var(--ink-muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

/* ── CTA / DOWNLOAD SECTION ───────────────────────────────────── */
.cta-section {
    padding: clamp(80px, 12vw, 130px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 70% at 50% 50%,
    rgba(168,85,247,0.13) 0%,
    transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.cta-section > .container > p {
    color: var(--ink-muted);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 490px;
    margin: 0 auto 48px;
    line-height: 1.68;
}

.qr-card {
    display: inline-flex;
    align-items: center;
    gap: clamp(18px, 4vw, 28px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(20px, 4vw, 28px) clamp(20px, 5vw, 36px);
    margin-top: 52px;
    backdrop-filter: blur(20px);
    text-align: left;
    transition: border-color 0.3s;
}

.qr-card:hover { border-color: var(--border-hover); }

.qr-card img {
    width: clamp(80px, 14vw, 104px);
    height: clamp(80px, 14vw, 104px);
    border-radius: 10px;
    background: white;
    padding: 5px;
    flex-shrink: 0;
}

.qr-card-text strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.qr-card-text span {
    color: var(--ink-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    display: block;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.55);
    border-top: 1px solid var(--border);
    padding: clamp(48px, 8vw, 80px) 0 clamp(24px, 4vw, 40px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: clamp(40px, 6vw, 56px);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-logo img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand > p {
    color: var(--ink-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 240px;
}

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    font-size: 0.88rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: var(--surface-hover);
    color: var(--purple-light);
    border-color: rgba(168,85,247,0.35);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--ink);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a,
.footer-col ul li {
    color: var(--ink-muted);
    font-size: 0.86rem;
    transition: color 0.2s;
    line-height: 1.4;
}

.footer-col ul a:hover { color: var(--ink); }

/* Newsletter */
.footer-newsletter p {
    color: var(--ink-muted);
    font-size: 0.84rem;
    margin-bottom: 14px;
    line-height: 1.55;
}

.footer-newsletter form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.footer-newsletter form:focus-within {
    border-color: rgba(168,85,247,0.4);
}

.footer-newsletter input {
    flex: 1;
    background: var(--surface);
    border: none;
    color: var(--ink);
    padding: 11px 14px;
    outline: none;
    font-size: 0.86rem;
    font-family: var(--font-body);
    min-width: 0;
}

.footer-newsletter input::placeholder { color: var(--ink-subtle); }

.footer-newsletter button {
    background: var(--grad);
    border: none;
    color: white;
    padding: 11px 16px;
    font-size: 0.88rem;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.footer-newsletter button:hover { opacity: 0.82; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--ink-subtle);
    font-size: 0.8rem;
}

.footer-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-tags span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 3px 11px;
    font-size: 0.72rem;
    color: var(--ink-muted);
}

/* ── BACK TO TOP ──────────────────────────────────────────────── */
#back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    border: none;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(168,85,247,0.4);
    transition: transform 0.2s, opacity 0.3s, box-shadow 0.2s;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
}

#back-top.show { opacity: 1; pointer-events: auto; }
#back-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(168,85,247,0.55);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* Tablet landscape: ≤ 1100px */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 36px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-newsletter { grid-column: span 1; }
}

/* Tablet portrait: ≤ 768px */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-cta.desktop-only { display: none; }
    .nav-mobile-toggle { display: flex; }

    .nav-inner { padding: 16px clamp(14px, 4vw, 24px); }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .steps::before { display: none; }
    .step-num { width: 64px; height: 64px; font-size: 1.2rem; margin-bottom: 16px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card { aspect-ratio: 16/9; }
    .gallery-card-overlay { opacity: 1; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand > p { max-width: 100%; }
    .footer-newsletter { grid-column: 1 / -1; }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* QR card */
    .qr-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 320px;
    }
    .qr-card-text { text-align: center; }

    /* CTA */
    .cta-section > .container { display: flex; flex-direction: column; align-items: center; }

    /* Back to top */
    #back-top { bottom: 20px; right: 16px; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; gap: 14px; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none !important; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: none; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-newsletter { grid-column: auto; }

    .steps { gap: 24px; }

    .scroll-hint { display: none; }
}

/* Very small screens: ≤ 360px */
@media (max-width: 360px) {
    .live-strip { font-size: 0.78rem; padding: 7px 14px; }
    .pill-badge { font-size: 0.7rem; padding: 6px 13px; }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .orb { animation: none; }
    .live-dot { animation: none; }
    .grad-text { animation: none; }
    .pill-badge::before { animation: none; }
    .scroll-hint { animation: none; }
    .fade-up { transition: none; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
