/* PixIsland Gateway — Landing Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ========== Design Tokens ========== */
:root {
    --bg: #0C0514;
    --bg-2: #130824;
    --fg: #F2ECFF;
    --muted: #C7BEE4;
    --primary: #A785FF;
    --primary-2: #6E4BFF;
    --card: #1B1230;
    --border: #2F2150;
    --success: #22c55e;
    --error: #ef4444;

    --container: 1200px;
    --header-h: 64px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(167,133,255,0.2), 0 0 80px rgba(110,75,255,0.08);
    --shadow-glow-sm: 0 0 12px rgba(167,133,255,0.15);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--fg); }

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

::selection { background: rgba(167,133,255,0.3); color: var(--fg); }

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========== Utilities ========== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(167,133,255,0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(167,133,255,0.45);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
}
.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(167,133,255,0.05);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn svg { width: 16px; height: 16px; }

/* ========== Section Badge Pill ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(27,18,48,0.6);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 20px;
}

.section-badge__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-badge__icon svg {
    width: 14px;
    height: 14px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ========== Section Headings ========== */
.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ========== 1. Announcement Bar ========== */
.announcement {
    background: linear-gradient(135deg, rgba(110,75,255,0.15), rgba(167,133,255,0.08));
    border-bottom: 1px solid rgba(167,133,255,0.1);
    padding: 10px 24px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    position: relative;
    z-index: 60;
}

.announcement a {
    color: var(--primary);
    font-weight: 600;
    margin-left: 8px;
}
.announcement a:hover { color: var(--fg); }

.announcement__close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    font-size: 1.1rem;
    line-height: 1;
    transition: color var(--transition);
}
.announcement__close:hover { color: var(--fg); }

.announcement.hidden { display: none; }

/* ========== 2. Header ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0 24px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background: rgba(12,5,20,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
}

.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--fg);
    flex-shrink: 0;
}

.logo svg { height: 32px; width: auto; }

.logo__text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--fg);
}

/* Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--fg); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTAs */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn { padding: 8px 20px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--fg);
}

.hamburger svg { width: 24px; height: 24px; }

/* ========== 3. Hero ========== */
.hero {
    position: relative;
    padding: 100px 0 140px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(167,133,255,0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(110,75,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Grid Background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(167,133,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167,133,255,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
}

/* Hero Orb */
.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(500px, 85vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(40% 40% at 50% 50%, rgba(167,133,255,0.2), transparent 60%),
        radial-gradient(30% 30% at 50% 50%, rgba(110,75,255,0.12), transparent 65%);
    box-shadow:
        inset 0 0 80px rgba(167,133,255,0.1),
        0 0 120px rgba(167,133,255,0.06),
        0 0 240px rgba(110,75,255,0.04);
    animation: orbPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
        linear-gradient(rgba(167,133,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167,133,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black 35%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle, black 35%, transparent 65%);
}

/* Hero Orbit Rings */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px dashed rgba(167,133,255,0.1);
    pointer-events: none;
}

.hero-ring--1 {
    width: min(360px, 65vw);
    height: min(360px, 65vw);
    transform: translate(-50%, -50%);
    animation: ringRotate 40s linear infinite;
}

.hero-ring--2 {
    width: min(480px, 80vw);
    height: min(480px, 80vw);
    transform: translate(-50%, -50%);
    animation: ringRotate 60s linear infinite reverse;
}

/* Hero Floating Nodes */
.hero-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-node {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(167,133,255,0.5);
    opacity: 0;
    animation: nodePulse 4s ease-in-out infinite;
}

.hero-node:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.hero-node:nth-child(2) { top: 28%; right: 14%; animation-delay: 0.7s; }
.hero-node:nth-child(3) { bottom: 30%; left: 18%; animation-delay: 1.4s; }
.hero-node:nth-child(4) { top: 45%; right: 10%; animation-delay: 2.1s; }
.hero-node:nth-child(5) { bottom: 20%; right: 22%; animation-delay: 2.8s; }
.hero-node:nth-child(6) { top: 22%; left: 38%; animation-delay: 0.4s; }
.hero-node:nth-child(7) { bottom: 35%; left: 8%; animation-delay: 1.8s; }
.hero-node:nth-child(8) { top: 60%; right: 30%; animation-delay: 3.5s; }

/* Dashboard Mockup */
.hero-dashboard {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-card), 0 0 60px rgba(167,133,255,0.06);
    overflow: hidden;
    transform: perspective(1200px) rotateX(4deg);
}

.hero-dashboard__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
}

.hero-dashboard__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-dashboard__dot:nth-child(1) { background: #ef4444; }
.hero-dashboard__dot:nth-child(2) { background: #f59e0b; }
.hero-dashboard__dot:nth-child(3) { background: #22c55e; }

.hero-dashboard__body {
    display: grid;
    grid-template-columns: 48px 1fr 1fr 1fr;
    gap: 12px;
    padding: 20px;
    min-height: 200px;
}

.hero-dashboard__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.hero-dashboard__sidebar-item {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--border);
    margin: 0 auto;
}
.hero-dashboard__sidebar-item:first-child { background: var(--primary); opacity: 0.6; }

.hero-dashboard__card {
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
}
.hero-dashboard__card--highlight {
    background: linear-gradient(135deg, rgba(167,133,255,0.12), rgba(110,75,255,0.06));
}

.hero-dashboard__label {
    width: 60%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    margin-bottom: 10px;
}

.hero-dashboard__value {
    width: 80%;
    height: 20px;
    border-radius: 4px;
    background: rgba(167,133,255,0.15);
}

.hero-dashboard__chart {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.hero-dashboard__bar-item {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(167,133,255,0.15), rgba(167,133,255,0.35));
    min-height: 12px;
}

/* ========== 4. Marquee ========== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: rgba(19,8,36,0.5);
}

.marquee-row {
    display: flex;
    margin-bottom: 12px;
}
.marquee-row:last-child { margin-bottom: 0; }

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

.marquee-row--reverse .marquee-track {
    animation-direction: reverse;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========== 5. Support Section ========== */
.support-section {
    padding: 100px 0;
    background: var(--bg-2);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.support-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    transition: all var(--transition);
}
.support-card:hover {
    border-color: rgba(167,133,255,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sm);
}

.support-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(167,133,255,0.15), rgba(110,75,255,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.support-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ========== 6. Features Grid ========== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: rgba(167,133,255,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sm);
}

.feature-card:first-child {
    grid-column: span 2;
}

.feature-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
}

.feature-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(167,133,255,0.15), rgba(110,75,255,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feature-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.feature-card__accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(167,133,255,0.08), transparent 70%);
    pointer-events: none;
}

/* ========== 7. Pricing Section ========== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-top: 40px;
    align-items: start;
}

.pricing-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    transition: all var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card--highlight {
    border-color: rgba(167,133,255,0.4);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.pricing-card--highlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(167,133,255,0.2), rgba(110,75,255,0.1));
    z-index: -1;
}

.pricing-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-card__icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.pricing-card__name {
    font-size: 1.3rem;
    font-weight: 700;
}

.pricing-card__rate {
    margin-bottom: 8px;
}

.pricing-card__rate-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card__rate-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-card__fixed {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.pricing-card__settlement {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(34,197,94,0.1);
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-card__features {
    list-style: none;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(47,33,80,0.5);
}

.pricing-card__features li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Volume card */
.pricing-card--volume {
    background: linear-gradient(135deg, rgba(167,133,255,0.08), rgba(110,75,255,0.04));
    border-color: rgba(167,133,255,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 320px;
}

.pricing-card--volume h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-card--volume p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========== 8. Bento Grid (Why Choose Us) ========== */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-card:hover {
    border-color: rgba(167,133,255,0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-sm);
}

.bento-card--wide { grid-column: span 2; }

.bento-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Bento card visuals */
.bento-visual {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.35;
    pointer-events: none;
}

.bento-visual svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

/* Chat bubbles visual */
.bento-chat {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.6;
}

.bento-chat__bubble {
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--muted);
    max-width: 160px;
}
.bento-chat__bubble--sent {
    background: rgba(167,133,255,0.15);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.bento-chat__bubble--received {
    background: var(--border);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

/* Mini dashboard visual */
.bento-mini-dash {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 160px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(12,5,20,0.6);
    padding: 10px;
    opacity: 0.5;
}
.bento-mini-dash__row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}
.bento-mini-dash__bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(167,133,255,0.2);
}

/* Code snippet visual */
.bento-code {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--primary);
    opacity: 0.4;
    line-height: 1.5;
    white-space: pre;
}

/* Accent card */
.bento-card--accent {
    background: linear-gradient(135deg, rgba(167,133,255,0.12), rgba(110,75,255,0.06));
}

/* ========== 9. Testimonials ========== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-2);
}

.testimonials-section .section-heading,
.testimonials-section .section-badge { text-align: center; }
.testimonials-section .section-badge { margin: 0 auto 20px; }

.masonry-grid {
    columns: 3;
    column-gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    break-inside: avoid;
    margin-bottom: 20px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card);
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(167,133,255,0.2);
}

.testimonial-card__quote-icon {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.5;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--fg);
    margin-bottom: 20px;
}

.testimonial-card:first-child blockquote {
    font-size: 1.15rem;
    font-weight: 600;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 0.88rem;
    font-weight: 600;
}

.testimonial-card__role {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ========== 10. FAQ ========== */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(167,133,255,0.25); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--fg);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--muted);
    transition: transform var(--transition), color var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-chevron {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer__inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ========== 11. Footer ========== */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    max-width: 280px;
}

.footer__brand .logo { margin-bottom: 16px; }

.footer__tagline {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer__column h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer__column ul {
    list-style: none;
}

.footer__column li { margin-bottom: 10px; }

.footer__column a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer__column a:hover { color: var(--fg); }

.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(199,190,228,0.5);
}

/* ========== WhatsApp FAB ========== */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ========== Animations ========== */
@keyframes orbPulse {
    0%, 100% {
        box-shadow:
            inset 0 0 80px rgba(167,133,255,0.1),
            0 0 120px rgba(167,133,255,0.06),
            0 0 240px rgba(110,75,255,0.04);
    }
    50% {
        box-shadow:
            inset 0 0 100px rgba(167,133,255,0.16),
            0 0 160px rgba(167,133,255,0.1),
            0 0 300px rgba(110,75,255,0.06);
    }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    50% { opacity: 0.7; transform: scale(1); }
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 16px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Staggered hero entry */
.hero__content .section-badge { animation: fadeSlideUp 0.6s ease-out both; animation-delay: 0.1s; }
.hero__title { animation: fadeSlideUp 0.6s ease-out both; animation-delay: 0.2s; }
.hero__subtitle { animation: fadeSlideUp 0.6s ease-out both; animation-delay: 0.3s; }
.hero__ctas { animation: fadeSlideUp 0.6s ease-out both; animation-delay: 0.4s; }
.hero-dashboard { animation: fadeSlideUp 0.8s ease-out both; animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--wide { grid-column: span 2; }

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

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: span 2; max-width: none; }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta .btn--ghost { display: none; }
    .hamburger { display: block; }

    /* Mobile nav open */
    .header.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(12,5,20,0.96);
        backdrop-filter: blur(14px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .header.nav-open .nav-links a { font-size: 1rem; }

    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    .hero-orb { width: 300px; opacity: 0.6; }
    .hero-ring { display: none; }
    .hero-dashboard {
        transform: none;
        margin-top: 40px;
    }
    .hero-dashboard__body { grid-template-columns: 1fr 1fr; }
    .hero-dashboard__sidebar { display: none; }

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

    .features-grid { grid-template-columns: 1fr; }
    .feature-card:first-child { grid-column: span 1; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--wide { grid-column: span 1; }

    .masonry-grid { columns: 1; }

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

    .footer-grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; text-align: center; }
    .footer__brand .logo { justify-content: center; }
    .footer__column { text-align: center; }

    .whatsapp-fab { width: 48px; height: 48px; }
    .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .announcement { font-size: 0.78rem; padding-right: 40px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .masonry-grid { columns: 2; }
}
