:root {
    --bg-dark: #0a0a1a;
    --bg-card: #111128;
    --bg-card-hover: #16163a;
    --bg-input: #0d0d22;
    --accent: #6c5ce7;
    --accent-hover: #5a4bd1;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --danger: #e74c3c;
    --success: #2ecc71;
    --warning: #f39c12;
    --text: #e8e6f0;
    --text-muted: #8888aa;
    --border: #222244;
    --radius: 12px;
    --discord: #5865F2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: inherit; }

/* ── Navigation ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.navbar-brand {
    font-size: 22px; font-weight: 800;
    text-decoration: none; color: var(--text);
}
.navbar-brand span { color: var(--accent); }
.navbar-links { display: flex; gap: 32px; align-items: center; }
.navbar-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.navbar-links a:hover { color: var(--text); }

/* Hamburger toggle (hidden on desktop) */
.navbar-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 9px; background: none; border: none; cursor: pointer;
}
.navbar-toggle span {
    display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile navigation ── */
@media (max-width: 900px) {
    .navbar { padding: 0 20px; }
    .navbar-toggle { display: flex; }
    .navbar-links {
        display: none;
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 4px;
        background: rgba(10, 10, 26, 0.98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 12px 20px 20px;
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .navbar-links.open { display: flex; }
    .navbar-links > a { padding: 12px 8px; font-size: 15px; }
    /* The logged-in / guest menu is an inline-flex group — stack it on mobile */
    .navbar-links > div { flex-direction: column !important; align-items: stretch !important; gap: 6px !important; width: 100%; }
    .navbar-links > div a:not(.btn) { padding: 12px 8px; font-size: 15px; }
    .navbar-links .btn { width: 100%; justify-content: center; padding: 12px; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border: none; border-radius: 8px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
    font-family: inherit;
}
.btn-primary {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c0392b; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-discord {
    background: var(--discord); color: #fff;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}
.btn-discord:hover { background: #4752c4; transform: translateY(-1px); }

/* ── Hero Section ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 48px 80px;
    background: radial-gradient(ellipse at 30% 0%, rgba(108, 92, 231, 0.12) 0%, transparent 60%);
}
.hero-split {
    display: flex; align-items: center; gap: 60px;
    max-width: 1200px; width: 100%;
}
.hero-content { flex: 1; }
.hero h1 {
    font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-video { flex: 1; max-width: 520px; }
.hero-video-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    aspect-ratio: 16/10;
}
.hero-video-wrap video {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.hero-video-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card);
    color: var(--text-muted); font-size: 16px; font-weight: 500;
}
/* Hide placeholder when video loads */
.hero-video-wrap video:not([src=""]) + .hero-video-placeholder { display: none; }

.hero-price {
    margin-top: 48px; padding: 24px 40px; display: inline-block;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.hero-price .amount { font-size: 48px; font-weight: 800; color: var(--accent); }
.hero-price .period { font-size: 16px; color: var(--text-muted); }
.hero-price .note { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── Features ── */
.features {
    padding: 100px 48px; max-width: 1200px; margin: 0 auto;
}
.features h2 {
    text-align: center; font-size: 36px; font-weight: 700; margin-bottom: 60px;
}
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-card .icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--accent); display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ── Auth Pages ── */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 120px 24px 80px;
}
.auth-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 48px; width: 100%; max-width: 440px;
}
.auth-card h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.auth-card .subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 14px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text-muted); margin-bottom: 6px;
}
.form-group input, .form-group select {
    width: 100%; padding: 12px 16px; border-radius: 8px;
    background: var(--bg-input); border: 1px solid var(--border);
    color: var(--text); font-size: 14px; outline: none; transition: border-color 0.2s;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }

.auth-card .btn-primary { width: 100%; margin-top: 8px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-footer a { color: var(--accent); text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

/* Auth divider */
.auth-divider {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
    color: var(--text-muted); font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── Alerts ── */
.alert {
    padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 20px;
    display: none;
}
.alert a { color: inherit; font-weight: 600; text-decoration: underline; }
.alert-error { background: rgba(231, 76, 60, 0.15); border: 1px solid rgba(231, 76, 60, 0.3); color: #e74c3c; }
.alert-success { background: rgba(46, 204, 113, 0.15); border: 1px solid rgba(46, 204, 113, 0.3); color: #2ecc71; }

/* ── Checkout ── */
.checkout-price-box {
    background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px;
    padding: 16px 20px; margin-bottom: 28px;
}
.checkout-price-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; font-weight: 600;
}
.checkout-price-amount { color: var(--accent); font-size: 20px; }
.checkout-price-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.checkout-section {
    margin-bottom: 28px;
}
.checkout-section-label {
    display: block; font-size: 15px; font-weight: 600; margin-bottom: 12px;
    color: var(--text);
}
.checkout-discord-note {
    font-size: 12px; color: var(--text-muted); margin-top: 8px; text-align: center;
}

/* Billing Toggle */
.billing-toggle {
    display: flex; gap: 8px; margin-bottom: 12px;
}
.billing-option {
    flex: 1; padding: 14px 12px; border-radius: 8px; cursor: pointer;
    background: var(--bg-input); border: 2px solid var(--border);
    color: var(--text-muted); font-size: 13px; font-weight: 500;
    text-align: center; transition: all 0.2s; position: relative;
    font-family: inherit; line-height: 1.4;
}
.billing-option:hover { border-color: var(--accent); }
.billing-option.active {
    border-color: var(--accent); color: var(--text);
    background: rgba(108, 92, 231, 0.08);
}
.billing-amount { font-size: 18px; font-weight: 700; color: var(--accent); }
.billing-save {
    display: inline-block; font-size: 10px; font-weight: 700;
    background: var(--success); color: #000; padding: 2px 6px;
    border-radius: 4px; margin-top: 4px; text-transform: uppercase;
}

/* Square Card Container */
.square-card-container {
    min-height: 50px; padding: 12px; border-radius: 8px;
    background: var(--bg-input); border: 1px solid var(--border);
}

/* Subscription status badges */
.status-sub-active { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.status-sub-canceled { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.status-sub-paused { background: rgba(243, 156, 18, 0.15); color: var(--warning); }
.status-sub-pending { background: rgba(136, 136, 170, 0.15); color: var(--text-muted); }

.checkout-terms {
    margin-bottom: 20px;
}
.checkout-checkbox {
    display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.checkout-checkbox input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--accent); cursor: pointer;
}
.checkout-checkbox a {
    color: var(--accent); text-decoration: none;
}
.checkout-checkbox a:hover { text-decoration: underline; }

.discord-linked {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-input); border: 1px solid var(--border);
    border-radius: 8px; padding: 12px 16px;
}
.discord-avatar {
    width: 40px; height: 40px; border-radius: 50%;
}
.discord-name { font-weight: 600; font-size: 14px; }
.discord-status { font-size: 12px; color: var(--success); }

/* ── Dashboard ── */
.dashboard {
    padding: 100px 48px 48px; max-width: 1000px; margin: 0 auto;
}
.dashboard h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.dashboard .subtitle { color: var(--text-muted); margin-bottom: 40px; }
.dashboard-actions { display: flex; gap: 12px; margin-bottom: 32px; }

.license-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; margin-bottom: 16px; transition: border-color 0.2s;
}
.license-card:hover { border-color: var(--accent); }
.license-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.license-key {
    font-family: 'JetBrains Mono', 'Consolas', monospace; font-size: 16px; font-weight: 600;
    color: var(--accent); letter-spacing: 1px;
}
.license-status {
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase;
}
.status-active { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.status-expired { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.status-cancelled { background: rgba(231, 76, 60, 0.15); color: var(--danger); }

.license-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.license-detail label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 2px; }
.license-detail span { font-size: 14px; }

.license-actions { margin-top: 16px; display: flex; gap: 8px; }

/* ── Admin Layout ── */
.admin-layout {
    display: flex; min-height: 100vh; padding-top: 72px;
}
.admin-sidebar {
    width: 240px; background: var(--bg-card); border-right: 1px solid var(--border);
    display: flex; flex-direction: column; position: fixed; top: 72px; bottom: 0; left: 0;
    z-index: 50;
}
.admin-sidebar-brand {
    padding: 24px 20px 16px; font-size: 18px; font-weight: 700;
    border-bottom: 1px solid var(--border);
}
.admin-badge {
    font-size: 10px; background: var(--warning); color: #000; padding: 2px 8px;
    border-radius: 4px; margin-left: 8px; font-weight: 700; text-transform: uppercase;
    vertical-align: middle;
}
.admin-nav {
    flex: 1; padding: 12px 0;
}
.admin-nav a {
    display: block; padding: 10px 20px; font-size: 14px; font-weight: 500;
    color: var(--text-muted); text-decoration: none; transition: all 0.2s;
}
.admin-nav a:hover { color: var(--text); background: var(--bg-card-hover); }
.admin-nav a.active {
    color: var(--accent); background: rgba(108, 92, 231, 0.1);
    border-right: 3px solid var(--accent);
}
.admin-sidebar-footer {
    padding: 16px 20px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 8px;
}
.admin-sidebar-footer a {
    font-size: 13px; color: var(--text-muted); text-decoration: none;
}
.admin-sidebar-footer a:hover { color: var(--text); }

.admin-main {
    flex: 1; margin-left: 240px; padding: 32px 40px;
}
.admin-main h1 { font-size: 28px; font-weight: 700; margin-bottom: 24px; }

/* Admin Stats */
.admin-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.admin-stat-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; text-align: center;
}
.admin-stat-value { font-size: 32px; font-weight: 800; color: var(--accent); }
.admin-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* Admin Card */
.admin-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 20px;
}

/* Admin Tables */
.admin-table-wrap {
    overflow-x: auto; margin-top: 16px;
}
.admin-table {
    width: 100%; border-collapse: collapse; font-size: 13px;
}
.admin-table thead th {
    text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border); background: var(--bg-card);
}
.admin-table tbody td {
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.admin-table tbody tr:hover { background: var(--bg-card-hover); }
.admin-table code {
    background: var(--bg-input); padding: 2px 6px; border-radius: 4px;
}

.admin-status {
    padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600;
    text-transform: uppercase; display: inline-block;
}
.status-completed { background: rgba(46, 204, 113, 0.15); color: var(--success); }
.status-pending { background: rgba(243, 156, 18, 0.15); color: var(--warning); }
.status-failed { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.status-refunded { background: rgba(136, 136, 170, 0.15); color: var(--text-muted); }

/* Admin User Meta */
.admin-user-meta { display: flex; flex-direction: column; gap: 0; }
.admin-user-meta-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 8px 0; border-bottom: 1px solid var(--border);
    font-size: 13px; gap: 12px;
}
.admin-user-meta-row:last-child { border-bottom: none; }
.admin-user-meta-label {
    color: var(--text-muted); font-weight: 500; white-space: nowrap; min-width: 110px;
}
.admin-user-meta-row > span:last-child { text-align: right; word-break: break-all; }

/* Admin table clickable rows */
.admin-table tbody tr { cursor: default; }
.admin-table a:hover { text-decoration: underline !important; }

/* ── Pricing Page ── */
.pricing-page {
    padding: 120px 48px 80px; max-width: 960px; margin: 0 auto;
}
.pricing-header {
    text-align: center; margin-bottom: 60px;
}
.pricing-header h1 {
    font-size: 40px; font-weight: 800; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-header p { font-size: 18px; color: var(--text-muted); }

.pricing-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 80px;
}
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px 32px; position: relative; transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--accent); }
.pricing-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.15);
}
.pricing-card-badge {
    position: absolute; top: -12px; right: 24px;
    background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
    padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
}
.pricing-card-header { margin-bottom: 32px; }
.pricing-card-header h3 {
    font-size: 18px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card-price { margin-bottom: 8px; }
.pricing-amount { font-size: 48px; font-weight: 800; color: var(--accent); }
.pricing-period { font-size: 16px; color: var(--text-muted); }
.pricing-note { font-size: 13px; color: var(--text-muted); }
.pricing-equiv {
    font-size: 14px; color: var(--success); font-weight: 600; margin-top: 4px;
}

.pricing-features {
    list-style: none; padding: 0; margin: 0 0 32px;
}
.pricing-features li {
    padding: 10px 0; font-size: 14px; color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-left: 24px; position: relative;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\2713'; position: absolute; left: 0;
    color: var(--success); font-weight: 700;
}

/* Pricing FAQ */
.pricing-faq { margin-top: 40px; }
.pricing-faq h2 {
    font-size: 28px; font-weight: 700; margin-bottom: 32px; text-align: center;
}
.faq-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px;
}
.faq-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Footer ── */
.footer {
    padding: 48px; text-align: center; border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 13px;
}
.footer p { margin-bottom: 12px; }
.footer p:last-child { margin-bottom: 0; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-legal {
    font-size: 11px; max-width: 640px; margin-inline: auto;
    line-height: 1.6; opacity: 0.7;
}
.footer-disclaimer {
    font-size: 11px; font-style: italic; opacity: 0.6;
}

/* ── Hero Badge ── */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(108,92,231,0.12); border: 1px solid rgba(108,92,231,0.3);
    border-radius: 999px; padding: 6px 16px;
    font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 24px;
}

/* ── Showcase Sections ── */
.showcase-section { padding: 96px 48px; }
.showcase-section.alt { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.showcase-row {
    display: flex; align-items: center; gap: 80px;
    max-width: 1200px; margin: 0 auto;
}
.showcase-row.reverse { flex-direction: row-reverse; }

.showcase-content { flex: 1; min-width: 0; }
.showcase-label {
    display: inline-block; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px;
}
.showcase-content h2 {
    font-size: 38px; font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.showcase-content p {
    font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px;
}
.showcase-bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.showcase-bullets li {
    padding: 9px 0 9px 28px; position: relative;
    font-size: 15px; color: var(--text); border-bottom: 1px solid var(--border);
}
.showcase-bullets li:last-child { border-bottom: none; }
.showcase-bullets li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-weight: 700;
}

.showcase-img { flex: 1.15; min-width: 0; }
.showcase-img-frame {
    border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 60px rgba(108,92,231,0.12);
}
.showcase-img-frame img { width: 100%; height: auto; display: block; }

/* ── Hero: messaging + demo video ── */
.hero-video-split {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 100px 48px 48px;
}
.hvs-inner {
    max-width: 1200px; width: 100%;
    display: flex; align-items: center; gap: 60px;
}
.hvs-content { flex: 1; min-width: 0; }
.hvs-content .hero-badge { margin-bottom: 22px; }
.hvs-content .hero-badge em { font-style: italic; color: var(--accent); font-weight: 700; }
.hvs-content h1 {
    font-size: 44px; font-weight: 800; line-height: 1.12; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hvs-sub {
    font-size: 17px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 28px; max-width: 480px;
}
.hvs-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hvs-btn { padding: 14px 28px; font-size: 15px; }
.hvs-links { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.hvs-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.hvs-links a:hover { color: var(--accent); }
.hvs-links span { color: var(--border); }

.hvs-media { flex: 1.15; min-width: 0; }
.hvs-video-frame { position: relative; }
.hvs-video { width: 100%; height: auto; display: block; background: var(--bg-card); }
.hvs-video-caption {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(10,10,26,0.82); color: var(--text);
    font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* Hero trust bar */
.hero-trust {
    margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.hero-trust-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
}
.hero-trust-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-trust-tags span {
    font-size: 13px; font-weight: 600; color: var(--text);
    padding: 6px 14px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid var(--border);
}

/* ── Setup Steps Showcase ── */
.setup-steps-section {
    padding: 96px 48px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.setup-steps-inner { max-width: 1400px; margin: 0 auto; }
.setup-steps-header {
    text-align: center; margin-bottom: 64px;
}
.setup-steps-header h2 {
    font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.setup-steps-header p {
    font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto;
}
.setup-steps-track {
    display: flex; align-items: flex-start; gap: 0;
    overflow-x: auto; padding-bottom: 16px;
    -ms-overflow-style: none; scrollbar-width: none;
}
.setup-steps-track::-webkit-scrollbar { display: none; }
.setup-step {
    flex: 1; min-width: 220px; max-width: 280px;
    display: flex; flex-direction: column; gap: 20px;
}
.setup-step-screen { position: relative; }
.setup-step-num {
    position: absolute; top: -14px; left: -14px; z-index: 2;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: #fff;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px var(--bg-card), 0 4px 16px var(--accent-glow);
}
.setup-step .showcase-img-frame {
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px rgba(108,92,231,0.1);
}
.setup-step-body h3 {
    font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.setup-step-body p {
    font-size: 14px; color: var(--text-muted); line-height: 1.65;
}
.setup-step-arrow {
    flex-shrink: 0; align-self: center; margin-top: -60px;
    font-size: 24px; color: var(--accent); padding: 0 12px;
    opacity: 0.6;
}
.setup-steps-cta {
    margin-top: 56px; display: flex; align-items: center;
    justify-content: center; gap: 24px; flex-wrap: wrap;
}

/* ── Pain Strip ── */
.pain-strip {
    padding: 96px 48px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pain-strip-inner { max-width: 1100px; margin: 0 auto; }
.pain-strip h2 { text-align: center; font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.pain-strip .pain-subtitle { text-align: center; color: var(--text-muted); font-size: 17px; margin-bottom: 56px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain-card {
    background: var(--bg-dark); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: border-color 0.3s;
}
.pain-card:hover { border-color: rgba(108,92,231,0.4); }
.pain-card-icon { font-size: 28px; margin-bottom: 16px; }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.pain-solution {
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
    font-size: 14px; color: var(--success); font-weight: 600;
}

/* ── Features (lite / accordion) ── */
.features-lite { padding: 96px 48px; max-width: 940px; margin: 0 auto; }
.features-lite-header { text-align: center; margin-bottom: 44px; }
.features-lite-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.features-lite-header p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

.feat-acc-list { display: flex; flex-direction: column; gap: 12px; }
.feat-acc {
    border: 1px solid var(--border); border-radius: 12px;
    background: var(--bg-card); overflow: hidden; transition: border-color 0.2s;
}
.feat-acc:hover { border-color: rgba(108,92,231,0.35); }
.feat-acc.open { border-color: rgba(108,92,231,0.45); }

.feat-acc-head {
    width: 100%; display: flex; align-items: center; gap: 16px;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    text-align: left; font-family: inherit;
}
.feat-acc-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.feat-acc-titles { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.feat-acc-title { font-size: 17px; font-weight: 700; color: var(--text); }
.feat-acc-benefit { font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.feat-acc-toggle {
    flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--accent);
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.feat-acc-toggle::after { content: '\25BE'; transition: transform 0.2s; }
.feat-acc.open .feat-acc-toggle::after { transform: rotate(180deg); }

.feat-acc-body { display: none; padding: 0 22px 24px; }
.feat-acc.open .feat-acc-body { display: flex; gap: 28px; align-items: center; }
.feat-acc-media { flex: 1.1; min-width: 0; }
.feat-acc-media .showcase-img-frame {
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 24px rgba(108,92,231,0.08);
}
.feat-acc-detail { flex: 1; min-width: 0; }
.feat-acc-detail p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.feat-acc-detail .showcase-bullets { margin-bottom: 0; }

.features-lite-note {
    max-width: 720px; margin: 40px auto 0; text-align: center;
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
}
.features-lite-note strong { color: var(--text); }

/* ── Objection / Differentiation ── */
.objection-section { padding: 96px 48px; }
.objection-inner { max-width: 1000px; margin: 0 auto; }
.objection-inner h2 {
    text-align: center; font-size: 36px; font-weight: 800;
    margin-bottom: 16px; line-height: 1.2;
}
.objection-sub {
    text-align: center; color: var(--text-muted); font-size: 17px;
    max-width: 700px; margin: 0 auto 48px; line-height: 1.7;
}
.objection-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.objection-close {
    text-align: center; margin: 44px auto 0; max-width: 740px;
    font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.6;
}

/* ── Builder+ Badge ── */
.badge-builder {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #a855f7);
    color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    vertical-align: middle;
}

/* ── Mid-page CTA ── */
.mid-cta {
    padding: 80px 48px; text-align: center;
    background: radial-gradient(ellipse at center, rgba(108,92,231,0.12) 0%, transparent 70%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mid-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.mid-cta p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; max-width: 520px; margin-inline: auto; }

/* ── Stats Strip ── */
.stats-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 56px 48px;
}
.stats-inner {
    max-width: 960px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: space-around; gap: 32px; text-align: center;
}
.stat-item .stat-value { font-size: 52px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-item .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ── Compat Tags ── */
.compat-section { padding: 80px 48px; text-align: center; }
.compat-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.compat-section .compat-sub { color: var(--text-muted); margin-bottom: 40px; font-size: 16px; }
.compat-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 800px; margin: 0 auto; }
.compat-tag {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
    padding: 8px 20px; font-size: 14px; font-weight: 500; color: var(--text);
    transition: border-color 0.2s, color 0.2s;
}
.compat-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ── Bottom CTA ── */
.bottom-cta {
    padding: 100px 48px; text-align: center;
    background: var(--bg-card); border-top: 1px solid var(--border);
}
.bottom-cta h2 {
    font-size: 48px; font-weight: 800; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bottom-cta p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 560px; margin-inline: auto; }

/* ── Pricing: Value Context ── */
.pricing-value-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px;
}
.pricing-value-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px 24px; text-align: center;
}
.pricing-value-card .pvc-icon { font-size: 28px; margin-bottom: 12px; }
.pricing-value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pricing-value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-split { flex-direction: column; gap: 40px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-video { max-width: 100%; }
    .features { padding: 60px 20px; }
    .dashboard { padding: 100px 20px 20px; }
    .pricing-page { padding: 100px 20px 60px; }
    .pricing-cards { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }

    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; padding: 20px; }

    .hero-video-split { min-height: auto; padding: 100px 20px 56px; }
    .hvs-inner { flex-direction: column; gap: 36px; }
    .hvs-content { order: 1; text-align: center; }
    .hvs-content h1 { font-size: 30px; }
    .hvs-sub { font-size: 15px; margin-left: auto; margin-right: auto; }
    .hvs-actions { justify-content: center; }
    .hvs-links { justify-content: center; }
    .hvs-media { order: 2; width: 100%; }
    .hero-trust { margin-top: 36px; padding-top: 24px; flex-direction: column; gap: 12px; }

    .features-lite { padding: 60px 20px; }
    .features-lite-header h2 { font-size: 28px; }
    .feat-acc-head { padding: 16px; gap: 12px; }
    .feat-acc-toggle { font-size: 0; }
    .feat-acc-toggle::after { font-size: 14px; }
    .feat-acc.open .feat-acc-body { flex-direction: column; gap: 18px; align-items: stretch; }

    .showcase-section { padding: 60px 20px; }
    .showcase-row, .showcase-row.reverse { flex-direction: column; gap: 40px; }
    .showcase-content h2 { font-size: 28px; }
    .setup-steps-section { padding: 60px 20px; }
    .setup-steps-header h2 { font-size: 28px; }
    .setup-steps-track { flex-direction: column; gap: 40px; align-items: stretch; overflow-x: visible; }
    .setup-step { max-width: 100%; }
    .setup-step-arrow { display: none; }
    .pain-strip { padding: 60px 20px; }
    .pain-grid { grid-template-columns: 1fr; }
    .objection-section { padding: 60px 20px; }
    .objection-inner h2 { font-size: 27px; }
    .objection-grid { grid-template-columns: 1fr; }
    .stats-strip { padding: 40px 20px; }
    .stat-item .stat-value { font-size: 40px; }
    .compat-section { padding: 60px 20px; }
    .bottom-cta { padding: 60px 20px; }
    .bottom-cta h2 { font-size: 34px; }
    .mid-cta { padding: 60px 20px; }
    .mid-cta h2 { font-size: 28px; }
    .pricing-value-strip { grid-template-columns: 1fr; }
}
