/* ═══════════════════════════════════════════════
   DIVINE POS — IMMERSIVE GLASSMORPHISM
   Slate palette · Frosted glass · 3D · Parallax
   ═══════════════════════════════════════════════ */

/* Self-hosted variable font — eliminates Google Fonts round-trip */
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/files/fonts/PlusJakartaSans.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --black:    #030213;
    --white:    #FFFFFF;
    --bg:       #FAFAFA;
    --s50:      #F8FAFC;
    --s100:     #F1F5F9;
    --s200:     #E2E8F0;
    --s300:     #CBD5E1;
    --s400:     #94A3B8;
    --s500:     #64748B;
    --s600:     #475569;
    --s700:     #334155;
    --s800:     #1E293B;
    --s900:     #0F172A;
    --s950:     #020617;
    --red:      #D4183D;
    --emerald:  #10B981;

    --glass-bg:        rgba(255,255,255,0.45);
    --glass-bg-strong: rgba(255,255,255,0.60);
    --glass-border:    rgba(255,255,255,0.35);
    --glass-shadow:    0 8px 32px rgba(3,2,19,0.05), 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.03) inset;
    --glass-blur:      32px;

    --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 100px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--s900);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;

}

/* Grain overlay — subtle film texture on all pages */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.048;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* Decorative background shapes — stronger side decorations */
/* ── Decorative blobs ─────────────────────────────────────────────────── */
/* Base: left blob centered, right blob centered */
.section-has-decor { position: relative; }
.section-has-decor::before {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(148,163,184,0.42) 0%, rgba(148,163,184,0.14) 45%, transparent 70%);
    top: 50%; left: -320px; transform: translateY(-50%);
}
.section-has-decor::after {
    content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(148,163,184,0.32) 0%, rgba(148,163,184,0.10) 45%, transparent 70%);
    top: 50%; right: -280px; transform: translateY(-50%);
}

/* Left blob only (no right) */
.decor-left-only::after { display: none; }
/* Right blob only (no left) */
.decor-right-only::before { display: none; }

/* Left blob high, right blob low */
.decor-left-high::before  { top: 15%; transform: none; }
.decor-left-high::after   { top: auto; bottom: -180px; transform: none; }

/* Left blob low, right blob high */
.decor-right-high::before { top: auto; bottom: -200px; transform: none; }
.decor-right-high::after  { top: 10%; transform: none; }

/* Both blobs smaller/subtler */
.decor-subtle::before { width: 500px; height: 500px; opacity: 0.7; }
.decor-subtle::after  { width: 440px; height: 440px; opacity: 0.7; }

/* Left blob only, positioned low */
.decor-left-low::before { top: auto; bottom: -160px; transform: none; }
.decor-left-low::after  { display: none; }

/* Right blob only, positioned high */
.decor-right-high-only::before { display: none; }
.decor-right-high-only::after  { top: 5%; transform: none; }

/* Standalone utility blob classes */
.decor-circle-left {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15,23,42,0.05) 0%, transparent 65%);
    border-radius: 50%;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.decor-circle-right {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(15,23,42,0.045) 0%, transparent 65%);
    border-radius: 50%;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════
   PAGE TRANSITIONS
   ═══════════════════════════════════════ */
body.page-loading {
    opacity: 0;
    transform: translateY(12px);
}

body.page-ready {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body.page-leaving {
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ═══════════════════════════════════════
   GLASSMORPHISM CARD — Apple-style
   ═══════════════════════════════════════ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--glass-shadow);
    transition: box-shadow 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.glass-card:not(.pricing-card):not(.hero-showcase):hover {
    box-shadow: var(--glass-shadow), 0 28px 70px rgba(3,2,19,0.10);
}

/* Top-edge light refraction — subtle */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* Mouse-following glow */
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        400px circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(255,255,255,0.15) 0%,
        transparent 55%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}

.glass-card:hover::after { opacity: 1; }

.glass-card:hover {
    box-shadow: 0 16px 48px rgba(3,2,19,0.08), 0 1px 0 rgba(255,255,255,0.6) inset, 0 -1px 0 rgba(0,0,0,0.04) inset;
    /* NO border-color change — prevents flicker */
}

/* ═══════════════════════════════════════
   APPLE GLASS UTILITIES
   ═══════════════════════════════════════ */
/* Heavy frosted panel — wraps sections */
.glass-panel {
    background: rgba(255,255,255,0.50);
    backdrop-filter: blur(40px) saturate(1.6);
    -webkit-backdrop-filter: blur(40px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: var(--r-xl);
    box-shadow: 0 12px 40px rgba(3,2,19,0.06), 0 1px 0 rgba(255,255,255,0.55) inset, 0 -1px 0 rgba(0,0,0,0.03) inset;
    position: relative;
    overflow: hidden;
}

/* Nested inner glass */
.glass-inset {
    background: rgba(255,255,255,0.30);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--r-md);
    box-shadow: 0 2px 8px rgba(3,2,19,0.03) inset;
}

/* macOS-style toolbar */
.glass-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.toolbar-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.toolbar-dot.red { background: #FF5F57; }
.toolbar-dot.yellow { background: #FEBC2E; }
.toolbar-dot.green { background: #28C840; }

.toolbar-title {
    font-size: 0.7rem; font-weight: 600; color: var(--s400);
    margin-left: auto; margin-right: auto;
}

/* Glass segmented control / tabs */
.glass-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--r-pill);
    padding: 3px;
    gap: 2px;
}

.glass-tab {
    padding: 0.45rem 1.1rem;
    border-radius: var(--r-pill);
    font-size: 0.8rem; font-weight: 600;
    color: var(--s500);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none; background: none;
    font-family: inherit;
    white-space: nowrap;
}

.glass-tab:hover { color: var(--s700); }

.glass-tab.active {
    background: rgba(255,255,255,0.65);
    color: var(--s900);
    box-shadow: 0 1px 4px rgba(3,2,19,0.08);
}

/* ═══════════════════════════════════════
   DYNAMIC ISLAND NAV
   ═══════════════════════════════════════ */
.island {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: islandEntrance 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
    opacity: 0;
}

@keyframes islandEntrance {
    0% { opacity: 0; transform: translateX(-50%) translateY(-24px) scale(0.92); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.island-pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.65rem 0.65rem 0.65rem 1.5rem;
    background: rgba(3,2,19,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 24px rgba(3,2,19,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.island.scrolled .island-pill {
    padding: 0.45rem 0.45rem 0.45rem 1.1rem;
    box-shadow: 0 8px 32px rgba(3,2,19,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Scroll progress bar — hidden */
.island-progress { display: none; }

.island-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
    padding-right: 1rem;
    white-space: nowrap;
}

.island-logo-mark {
    height: 22px;
    width: auto;

    flex-shrink: 0;
}

.island-links { display: flex; gap: 0.125rem; }

.island-link {
    background: none;
    border: none;
    color: rgba(255,255,255,0.55);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.island-link:hover,
.island-link.active { color: var(--white); background: rgba(255,255,255,0.1); }

/* Persistent current-page indicator — matches hover exactly */
.island-link.current { color: var(--white) !important; background: rgba(255,255,255,0.1) !important; }

.island-actions { display: flex; align-items: center; gap: 0.25rem; margin-left: 0.5rem; }

.island-login {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: var(--r-pill);
    transition: color 0.2s;
    white-space: nowrap;
}
.island-login:hover { color: var(--white); }

.island-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.25rem;
    background: var(--white);
    color: var(--s900);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.island-cta:hover { background: var(--s100); transform: scale(1.03); }

/* Mobile hamburger — hidden on desktop */
.island-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: pointer; padding: 0;
    margin-left: 0.25rem;
}

.island-hamburger span {
    display: block; width: 18px; height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px; position: relative;
    transition: all 0.3s ease;
}

.island-hamburger span::before,
.island-hamburger span::after {
    content: ''; position: absolute;
    width: 18px; height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 1px; left: 0;
    transition: all 0.3s ease;
}
.island-hamburger span::before { top: -6px; }
.island-hamburger span::after { top: 6px; }

.island-hamburger.open span { background: transparent; }
.island-hamburger.open span::before { top: 0; transform: rotate(45deg); }
.island-hamburger.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    top: 72px; left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: calc(100% - 2rem); max-width: 400px;
    max-height: calc(100vh - 90px); overflow-y: auto;
    background: rgba(3,2,19,0.92);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    box-shadow: 0 16px 48px rgba(3,2,19,0.35);
    padding: 1rem;
    opacity: 0; visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    pointer-events: none;
}

.mobile-nav.open {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: all;
}

.mobile-nav-link {
    display: block; padding: 0.7rem 1rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem; font-weight: 500;
    border-radius: var(--r-md);
    transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* Target plain <a> tags inside mobile-nav (no class applied in HTML) */
.mobile-nav a:not(.mobile-nav-cta) {
    display: block;
    padding: 0.7rem 1rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.mobile-nav a:not(.mobile-nav-cta):hover,
.mobile-nav a:not(.mobile-nav-cta):focus {
    background: rgba(255,255,255,0.09);
    color: var(--white);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.4rem 0;
}

.mobile-nav-cta {
    display: block; text-align: center;
    padding: 0.7rem; margin-top: 0.4rem;
    background: var(--white); color: var(--s900);
    font-weight: 600; font-size: 0.9rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--s100); }

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.96);
    background: rgba(3,2,19,0.92);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    box-shadow: 0 16px 48px rgba(3,2,19,0.35);
    padding: 1.5rem;
    min-width: 520px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.mega-menu.open {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: all;
}

.mega-panel { display: none; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mega-panel.active { display: grid; }

.mega-label {
    display: block; font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3); margin-bottom: 0.75rem;
}

.mega-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.625rem; border-radius: var(--r-md);
    text-decoration: none; transition: background 0.2s; margin-bottom: 0.25rem;
}
.mega-item:hover { background: rgba(255,255,255,0.06); }

/* Active mega-item (current page) */
.mega-item.current { background: rgba(255,255,255,0.09); box-shadow: inset 2px 0 0 rgba(255,255,255,0.5); }
.mega-item.current strong { color: var(--white); }
.mega-item.current .mega-icon { background: rgba(255,255,255,0.12); color: var(--white); }

.mega-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--r-sm);
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); flex-shrink: 0;
}

.mega-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 0.125rem; }
.mega-item span { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-dark {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.75rem; background: var(--s900); color: var(--white);
    font-size: 0.9rem; font-weight: 600; font-family: inherit;
    border: none; border-radius: var(--r-pill); text-decoration: none;
    cursor: pointer; transition: all 0.25s ease;
}
.btn-dark:hover { background: var(--black); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(3,2,19,0.25); }
.btn-dark:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }

.btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.75rem; background: transparent; color: var(--s600);
    font-size: 0.9rem; font-weight: 600; font-family: inherit;
    border: 1.5px solid var(--s200); border-radius: var(--r-pill);
    text-decoration: none; cursor: pointer; transition: all 0.25s ease;
}
.btn-ghost:hover { border-color: var(--s400); color: var(--s900); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }

.btn-outline-dark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 100%; padding: 0.75rem 1.75rem; background: transparent;
    color: var(--s900); font-size: 0.9rem; font-weight: 600; font-family: inherit;
    border: 1.5px solid var(--s200); border-radius: var(--r-pill);
    text-decoration: none; cursor: pointer; transition: all 0.25s ease;
}
.btn-outline-dark:hover { background: var(--s900); color: var(--white); border-color: var(--s900); }
.btn-outline-dark:active { transform: scale(0.97); transition-duration: 0.1s; }

/* ═══════════════════════════════════════
   HERO ADDITIONS — badge, accent, CTAs, POS mockup
   ═══════════════════════════════════════ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--s600);
    background: transparent;
    border: 1.5px solid var(--s300);
    padding: 0.3rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}
.hero-accent { color: var(--s400); }

/* Brand CTA buttons */
.btn-amber {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.8125rem 1.75rem;
    background: var(--s900); color: var(--white);
    font-size: 0.9375rem; font-weight: 700;
    border-radius: var(--r-pill); text-decoration: none;
    transition: all 0.2s ease; border: none; cursor: pointer; white-space: nowrap;
}
.btn-amber:hover {
    background: var(--black);
    box-shadow: 0 8px 32px rgba(3,2,19,0.3);
    transform: translateY(-2px);
}
.btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.8125rem 1.75rem;
    background: transparent; color: var(--s700);
    font-size: 0.9375rem; font-weight: 600;
    border-radius: var(--r-pill); text-decoration: none;
    border: 1.5px solid var(--s300); transition: all 0.2s ease;
}
.btn-ghost-dark:hover { border-color: var(--s500); color: var(--s900); background: rgba(0,0,0,0.03); }

/* Trust row — light theme */
.hero-trust {
    display: flex; align-items: center; justify-content: center;
    gap: 0.875rem; margin-top: 2rem;
    padding-top: 1.75rem; border-top: 1px solid var(--s200);
}
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    border: 2px solid var(--white); margin-left: -9px;
    background: linear-gradient(135deg, rgba(15,23,42,0.6), rgba(51,65,85,0.5));
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.78rem; color: var(--s500); font-weight: 500; line-height: 1.4; }
.hero-trust-text strong { color: var(--s800); font-weight: 700; }

/* ─── POS App Mockup ─── */
.hero-pos-wrap {
    padding: 3.5rem 1.5rem 0;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-pos {
    background: #0F172A;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(3,2,19,0.22), 0 8px 40px rgba(3,2,19,0.10);
    animation: heroFloat 7s ease-in-out infinite;
    will-change: transform;
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: none;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.hero-pos-bar {
    display: flex; align-items: center;
    padding: 0.75rem 1.25rem;
    background: #1E293B;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 1rem;
}
.pos-dots { display: flex; gap: 6px; }
.pos-dot { width: 12px; height: 12px; border-radius: 50%; }
.pos-dot.red    { background: #FF5F57; }
.pos-dot.yellow { background: #FEBC2E; }
.pos-dot.green  { background: #28C840; }
.pos-bar-title { flex: 1; text-align: center; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.38); }
.pos-bar-revenue { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.hero-pos-body {
    display: grid;
    grid-template-columns: 160px 1fr 200px;
    height: 380px;
}
/* Sidebar */
.pos-sidebar {
    background: #0B1120;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0; overflow: hidden;
}
.pos-sidebar-label {
    font-size: 0.58rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.25);
    padding: 0 1rem; margin-bottom: 0.4rem; display: block;
}
.pos-cat {
    display: flex; align-items: center; gap: 0.625rem;
    padding: 0.45rem 1rem;
    font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.42);
    border-left: 2px solid transparent;
    transition: all 0.15s;
}
.pos-cat.active { background: rgba(255,255,255,0.09); color: var(--white); border-left-color: rgba(255,255,255,0.7); }
.pos-cat-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.pos-cat.active .pos-cat-dot { background: var(--white); }
.pos-sidebar-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 0.625rem 1rem; }
/* Menu grid */
.pos-menu { background: #131c30; padding: 1rem; overflow: hidden; }
.pos-menu-label {
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.28); margin-bottom: 0.75rem;
}
.pos-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.pos-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 0.7rem;
    cursor: pointer; position: relative; transition: all 0.15s;
}
.pos-item.selected { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.09); }
.pos-item-thumb { width: 100%; aspect-ratio: 16/9; border-radius: 6px; margin-bottom: 0.45rem; }
.pos-item-name { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.82); line-height: 1.3; margin-bottom: 0.15rem; }
.pos-item-price { font-size: 0.66rem; color: rgba(255,255,255,0.38); font-weight: 600; }
.pos-item-badge {
    position: absolute; top: 5px; right: 5px;
    background: var(--white); color: #030213;
    font-size: 0.58rem; font-weight: 800;
    padding: 2px 6px; border-radius: 100px;
}
/* Order panel */
.pos-order {
    background: #0B1120;
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; overflow: hidden;
}
.pos-order-header { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pos-order-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 0.15rem; }
.pos-order-sub { font-size: 0.61rem; color: rgba(255,255,255,0.28); }
.pos-order-items { flex: 1; padding: 0.75rem 1rem; overflow: hidden; display: flex; flex-direction: column; gap: 0.5rem; }
.pos-order-item { display: flex; justify-content: space-between; align-items: flex-start; }
.pos-order-item-name { font-size: 0.69rem; color: rgba(255,255,255,0.62); font-weight: 500; line-height: 1.35; }
.pos-order-item-qty { font-size: 0.59rem; color: rgba(255,255,255,0.28); }
.pos-order-item-price { font-size: 0.69rem; color: rgba(255,255,255,0.58); font-weight: 600; white-space: nowrap; }
.pos-order-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 1rem; }
.pos-order-totals { padding: 0.625rem 1rem; }
.pos-total-row { display: flex; justify-content: space-between; font-size: 0.67rem; color: rgba(255,255,255,0.38); margin-bottom: 0.22rem; }
.pos-total-row.grand { color: rgba(255,255,255,0.82); font-weight: 700; font-size: 0.78rem; margin-top: 0.35rem; }
.pos-charge-btn {
    margin: 0.5rem 1rem 1rem;
    background: var(--white); color: #030213;
    font-size: 0.82rem; font-weight: 800;
    border-radius: 8px; padding: 0.75rem;
    text-align: center; cursor: pointer;
    transition: background 0.15s;
}
.pos-charge-btn:hover { background: var(--s100); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
/* ─── Dark Hero Shell ─── */
.hero-dark-shell {
    background: #030213;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#hero-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.hero {
    padding: 140px 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
/* ─── Marquee feature band ─── */
.marquee-band {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 1rem 0;
    background: var(--s50);
    border-top: 1px solid var(--s200);
    border-bottom: 1px solid var(--s200);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}
.marquee-track-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
}
.marquee-item {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--s500);
    white-space: nowrap;
}
.marquee-sep {
    font-size: 0.65rem;
    color: var(--s400);
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-center { max-width: 640px; margin: 0 auto 4rem; }

.hero-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--s400);
    margin-bottom: 1.25rem;
}

.hero-h1 {
    font-size: clamp(3.5rem, 6.5vw, 6rem); font-weight: 900; line-height: 1.05;
    letter-spacing: -0.04em; color: var(--s900); margin-bottom: 1.25rem;
}
.hero-h1-light { color: var(--s400); }

/* Morphing text */
.morph-out { opacity: 0; transform: translateY(-8px); transition: all 0.4s ease; }
.morph-in  { animation: morphIn 0.4s ease forwards; }
@keyframes morphIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
    font-size: 1.0625rem; color: var(--s500); line-height: 1.7;
    margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* Hero showcase — glass panel wrapping dashboard cards */
.hero-showcase {
    padding: 0;
    max-width: 920px;
    margin: 0 auto;
    animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-showcase .glass-toolbar { border-radius: var(--r-xl) var(--r-xl) 0 0; }

/* Hero cards */
.hero-cards {
    display: grid; grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto; gap: 1rem;
    padding: 1rem;
}
.hero-card-main { grid-row: 1 / 3; padding: 1.5rem; }
.hero-card-side { padding: 1.25rem; }

.card-header-bar { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--s300); }
.card-dot.green { background: var(--emerald); }
.card-header-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--s400); }

.dashboard-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-stat { background: rgba(255,255,255,0.40); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.35); border-radius: var(--r-md); padding: 0.875rem; }
.dash-label { display: block; font-size: 0.65rem; font-weight: 600; color: var(--s400); margin-bottom: 0.25rem; }
.dash-value { display: block; font-size: 1.5rem; font-weight: 800; color: var(--s900); letter-spacing: -0.03em; line-height: 1.2; }
.dash-change { display: inline-block; font-size: 0.65rem; font-weight: 700; margin-top: 0.25rem; color: var(--emerald); }
.dash-chart { background: rgba(255,255,255,0.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.35); border-radius: var(--r-md); padding: 1rem; }
.sparkline { width: 100%; height: 60px; display: block; }

.mini-order { margin-bottom: 0.75rem; }
.mini-row { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: 0.8rem; color: var(--s600); border-bottom: 1px solid var(--s100); }
.mini-row.total { border: none; font-weight: 700; color: var(--s900); padding-top: 0.5rem; }
.mini-btn { background: var(--s900); color: var(--white); text-align: center; padding: 0.5rem; border-radius: var(--r-sm); font-size: 0.8rem; font-weight: 700; }

.status-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.status-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--s700); font-weight: 500; }
.status-indicator { width: 6px; height: 6px; border-radius: 50%; background: var(--s300); }
.status-indicator.on { background: var(--emerald); animation: statusPulse 2s ease-in-out infinite; }
.status-tag { margin-left: auto; font-size: 0.65rem; font-weight: 600; color: var(--emerald); background: rgba(16,185,129,0.08); padding: 0.125rem 0.5rem; border-radius: var(--r-pill); }

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
    50% { box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* ═══════════════════════════════════════
   COMPETITOR COMPARISON
   ═══════════════════════════════════════ */
.compare-section { padding: 7rem 0; background: var(--s50); }
.compare-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.compare-eyebrow { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--s400); margin-bottom: 0.875rem; }
.compare-h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; color: var(--s900); margin-bottom: 1.25rem; }
.compare-sub { font-size: 0.95rem; color: var(--s500); line-height: 1.7; }
.compare-right { display: flex; flex-direction: column; gap: 1rem; }
.compare-card {
    padding: 1.75rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--s200);
    background: var(--white);
}
.compare-card.compare-card-divine {
    background: var(--s900);
    border-color: var(--s800);
}
.compare-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--s400); margin-bottom: 1.25rem; }
.compare-brand-divine { color: rgba(255,255,255,0.45); }
.compare-fee-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.85rem; }
.compare-fee-label { color: var(--s600); font-weight: 500; }
.compare-card-divine .compare-fee-label { color: rgba(255,255,255,0.55); }
.compare-fee-val { font-weight: 700; font-size: 0.875rem; }
.compare-fee-val.bad { color: var(--s700); }
.compare-fee-val.good { color: var(--white); }
.compare-fee-divider { height: 1px; background: var(--s200); margin: 0.5rem 0; }
.compare-card-divine .compare-fee-divider { background: rgba(255,255,255,0.1); }
.compare-total-row { font-weight: 700; }
.compare-total-row span:first-child { color: var(--s800); font-weight: 700; }
.compare-card-divine .compare-total-row span:first-child { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════
   LOGOS
   ═══════════════════════════════════════ */
.logos-section { padding: 3rem 2rem; text-align: center; }
.logos-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--s300); margin-bottom: 1.5rem; }
.logos-track { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.logo-item { font-size: 0.95rem; font-weight: 700; color: var(--s300); transition: color 0.2s, transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.logo-item:hover { color: var(--s500); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */
.section-head { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; }
.section-head h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; color: var(--s900); margin-bottom: 1rem; }
.text-muted { color: var(--s400); }
.section-head p { font-size: 1rem; color: var(--s500); line-height: 1.7; }

/* ─── Page Breadcrumb ─── */
.page-breadcrumb {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.8rem; font-weight: 500; color: var(--s400);
    margin-bottom: 1.25rem; padding: 0.3rem 0.875rem;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--r-pill); backdrop-filter: blur(8px);
}
.page-breadcrumb a { color: var(--s400); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--s700); }
.page-breadcrumb .sep { color: var(--s300); }
.page-breadcrumb .crumb-current { color: var(--s600); font-weight: 600; }

/* ─── Page Hero CTA Buttons ─── */
.page-hero-buttons { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* Page hero (inner pages) — viewport-relative blobs */
.page-hero {
    padding: 140px 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 50vw 40vh at 20% 30%, rgba(203,213,225,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40vw 40vh at 75% 50%, rgba(226,232,240,0.30) 0%, transparent 70%),
        radial-gradient(ellipse 45vw 35vh at 50% 80%, rgba(241,245,249,0.28) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.page-hero h1 {
    font-size: 3.5rem; font-weight: 900; letter-spacing: -0.04em;
    line-height: 1.1; color: var(--s900); margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.0625rem; color: var(--s500); line-height: 1.7;
    max-width: 500px; margin: 0 auto;
}

/* ═══════════════════════════════════════
   FEATURES (landing page grid)
   ═══════════════════════════════════════ */
.features { padding: 6rem 0; position: relative; background: var(--s50); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
/* Bento: first card wider, last card full-width */
.feature-card-wide { grid-column: span 2; }
.feature-card-full { grid-column: span 3; display: flex; align-items: center; gap: 4rem; }
.feature-card-full .feature-card-chart { flex: 1; }
.feature-card-full .feature-card-text { max-width: 320px; flex-shrink: 0; }
.feature-card-full .feature-card-text h3 { font-size: 1.2rem; }
.feature-card-full .feature-card-text p { font-size: 0.9rem; }
/* Mini chart bars inside full-width Sales card */
.feat-bars { display: flex; align-items: flex-end; gap: 0.35rem; height: 64px; }
.feat-bar { flex: 1; background: var(--s200); border-radius: 3px 3px 0 0; }
.feat-bar.lit { background: var(--s800); }

.feature-card { padding: 2.25rem; }
.feature-icon {
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    background: var(--s100); border: 1px solid var(--s200);
    border-radius: var(--r-md); color: var(--s700); margin-bottom: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s ease;
}
.feature-card:hover .feature-icon { transform: translateY(-2px); background: var(--s200); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--s900); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--s500); line-height: 1.65; }

/* ═══════════════════════════════════════
   BENTO GRID (homepage features)
   ═══════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}
.bento-card {
    background: var(--white);
    border: 1px solid var(--s200);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(3,2,19,0.08);
}
.bc-8  { grid-column: span 8; }
.bc-4  { grid-column: span 4; }
.bc-6  { grid-column: span 6; }

.bento-visual {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--s200);
}
.bento-body { padding: 1.75rem 2rem; flex: 1; }
.bento-eyebrow {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--s400); margin-bottom: 0.35rem;
}
.bento-body h3 {
    font-size: 1.05rem; font-weight: 800; color: var(--s900);
    margin-bottom: 0.375rem; letter-spacing: -0.02em; line-height: 1.3;
}
.bento-body p { font-size: 0.875rem; color: var(--s500); line-height: 1.65; margin: 0; }

/* Bento: POS card (bc-8) */
.bento-pos-visual {
    height: 240px;
    display: grid;
    grid-template-columns: 1fr 190px;
    background: #0d1117;
}
.bento-pos-menu { padding: 1.25rem; border-right: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.bento-pos-mlabel {
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.28); margin-bottom: 0.7rem;
}
.bento-pos-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}
.bento-pos-item {
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 0.6rem 0.5rem;
    display: flex; flex-direction: column; gap: 0.25rem;
}
.bento-pos-item.sel {
    background: rgba(255,255,255,0.11);
    border-color: rgba(255,255,255,0.18);
}
.bento-pos-thumb {
    width: 100%; aspect-ratio: 1.4 / 1; border-radius: 5px; margin-bottom: 0.15rem;
}
.bento-pos-iname { font-size: 0.57rem; font-weight: 600; color: rgba(255,255,255,0.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bento-pos-iprice { font-size: 0.55rem; color: rgba(255,255,255,0.32); }
.bento-pos-order {
    padding: 1.1rem 0.9rem;
    display: flex; flex-direction: column; gap: 0.45rem;
    background: rgba(0,0,0,0.2);
}
.bento-pos-otitle { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 0.2rem; }
.bento-pos-orow {
    display: flex; justify-content: space-between;
    font-size: 0.58rem; color: rgba(255,255,255,0.4);
}
.bento-pos-orow span:last-child { color: rgba(255,255,255,0.65); }
.bento-pos-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.2rem 0; }
.bento-pos-total {
    display: flex; justify-content: space-between;
    font-size: 0.65rem; font-weight: 800; color: rgba(255,255,255,0.9);
}
.bento-pos-btn {
    margin-top: auto;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 7px; text-align: center;
    padding: 0.45rem; font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.8);
}

/* Bento: Zero Fees card (bc-4) */
.bento-fees-visual {
    height: 200px; background: var(--s950);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 0.4rem; padding: 1.5rem;
}
.bento-fees-label {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.3);
}
.bento-fees-zero {
    font-size: 4.5rem; font-weight: 900; color: var(--white);
    line-height: 1; letter-spacing: -0.05em;
}
.bento-fees-rule { width: 28px; height: 1px; background: rgba(255,255,255,0.15); margin: 0.2rem 0; }
.bento-fees-sub {
    font-size: 0.65rem; color: rgba(255,255,255,0.4);
    text-align: center; line-height: 1.5;
}

/* Bento: Analytics card (bc-4) */
.bento-analytics-visual {
    height: 180px; padding: 1.25rem 1.5rem 0.75rem;
    display: flex; flex-direction: column;
    background: var(--s50);
}
.bento-chart-head { display: flex; align-items: baseline; gap: 0.4rem; }
.bento-chart-rev { font-size: 1.4rem; font-weight: 900; color: var(--s900); letter-spacing: -0.03em; line-height: 1; }
.bento-chart-up {
    font-size: 0.65rem; font-weight: 700; color: #059669;
    background: rgba(16,185,129,0.12); border-radius: 20px; padding: 2px 7px;
}
.bento-chart-bars {
    display: flex; align-items: flex-end; gap: 0.3rem;
    height: 80px; margin-top: auto;
}
.bento-chart-bar { flex: 1; background: var(--s200); border-radius: 3px 3px 0 0; }
.bento-chart-bar.hi { background: var(--s800); }

/* Bento: KDS card (bc-4) */
.bento-kds-visual {
    height: 180px; padding: 1rem; gap: 0.6rem;
    display: flex; overflow: hidden; background: #111827;
}
.bento-kds-ticket {
    flex: 1; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px; padding: 0.75rem;
    display: flex; flex-direction: column; gap: 0.35rem;
}
.bento-kds-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.2rem; }
.bento-kds-order { font-size: 0.6rem; font-weight: 800; color: rgba(255,255,255,0.8); }
.bento-kds-time { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.bento-kds-item {
    font-size: 0.58rem; color: rgba(255,255,255,0.55);
    display: flex; align-items: center; gap: 0.3rem;
}
.bento-kds-item::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.25); flex-shrink: 0;
}
.bento-kds-badge {
    margin-top: auto; font-size: 0.55rem; font-weight: 700;
    padding: 2px 6px; border-radius: 4px; align-self: flex-start;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.bento-kds-badge.cooking { background: rgba(245,158,11,0.15); color: rgba(245,158,11,0.9); }
.bento-kds-badge.done    { background: rgba(16,185,129,0.15); color: rgba(16,185,129,0.9); }

/* Bento: Online Ordering card (bc-4) */
.bento-online-visual {
    height: 180px; padding: 1.1rem 1.25rem;
    display: flex; flex-direction: column; gap: 0.35rem; background: var(--s50);
}
.bento-online-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.2rem; }
.bento-online-title { font-size: 0.65rem; font-weight: 700; color: var(--s700); }
.bento-online-status {
    font-size: 0.55rem; font-weight: 700; color: #059669;
    background: rgba(16,185,129,0.12); border-radius: 20px; padding: 2px 8px;
}
.bento-online-row {
    display: flex; justify-content: space-between;
    font-size: 0.7rem; color: var(--s500);
    padding: 0.35rem 0; border-bottom: 1px solid var(--s100);
}
.bento-online-total {
    display: flex; justify-content: space-between;
    font-size: 0.72rem; font-weight: 800; color: var(--s900); margin-top: 0.2rem;
}
.bento-online-btn {
    background: var(--s950); color: var(--white); border-radius: 7px;
    text-align: center; padding: 0.45rem;
    font-size: 0.6rem; font-weight: 700; margin-top: auto;
}

/* Bento: Offline card (bc-6) */
.bento-offline-visual {
    padding: 1.75rem 2rem; height: 168px;
    display: flex; flex-direction: column; justify-content: center; gap: 0.75rem;
    background: var(--s950);
}
.bento-offline-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
    border-radius: 20px; padding: 4px 12px;
    font-size: 0.62rem; font-weight: 700; color: rgba(16,185,129,0.9); width: fit-content;
}
.bento-offline-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}
.bento-offline-head {
    font-size: 1.05rem; font-weight: 800; color: var(--white);
    letter-spacing: -0.02em; line-height: 1.3;
}
.bento-sync-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bento-sync-pill {
    font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; padding: 3px 9px;
}

/* Bento: Devices card (bc-6) */
.bento-devices-visual {
    padding: 1.75rem 2rem; height: 168px;
    display: flex; align-items: center;
    background: var(--s50);
}
.bento-devices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; width: 100%; }
.bento-device-tag {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--white); border: 1px solid var(--s200);
    border-radius: 10px; padding: 0.6rem 0.875rem;
    font-size: 0.72rem; font-weight: 600; color: var(--s700);
}
.bento-device-tag svg { color: var(--s500); flex-shrink: 0; }

/* Bento responsive */
@media (max-width: 1024px) {
    .bc-8  { grid-column: span 12; }
    .bc-4  { grid-column: span 6; }
    .bc-6  { grid-column: span 6; }
    .bento-pos-visual { grid-template-columns: 1fr; height: 200px; }
    .bento-pos-order { display: none; }
    .bento-pos-items { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .bc-8, .bc-4, .bc-6 { grid-column: span 12; }
    .bento-kds-visual { height: 140px; }
    .bento-analytics-visual, .bento-online-visual { height: 160px; }
}

/* ═══════════════════════════════════════
   FEATURES PAGE — Detailed
   ═══════════════════════════════════════ */
.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-top: 1px solid var(--s100);
}
.feature-detail:last-child { border-bottom: none; }
.feature-detail.reverse { direction: rtl; }
.feature-detail.reverse > * { direction: ltr; }

.feature-detail-content h3 {
    font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em;
    color: var(--s900); margin-bottom: 0.75rem; line-height: 1.15;
}

.feature-detail-content p {
    font-size: 0.95rem; color: var(--s500); line-height: 1.7; margin-bottom: 1.25rem;
}

.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-bullets li {
    display: flex; align-items: center; gap: 0.625rem;
    font-size: 0.875rem; font-weight: 500; color: var(--s700);
}

.feature-bullets li::before {
    content: '';
    width: 18px; height: 18px; border-radius: 50%; background: var(--s100);
    flex-shrink: 0; position: relative;
}

.feature-bullets li::after {
    content: ''; position: absolute;
    margin-left: -13px; margin-top: 1px;
    width: 5px; height: 8px;
    border: solid var(--s600); border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}

.feature-mockup {
    padding: 0;
}

.feature-mockup-inner {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: var(--r-lg);
    padding: 0;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(3,2,19,0.05), 0 1px 0 rgba(255,255,255,0.5) inset;
}

.mockup-placeholder {
    display: flex; align-items: center; justify-content: center;
    flex: 1; min-height: 200px;
    font-size: 0.8rem; color: var(--s400); font-weight: 600;
    background: var(--s50);
    margin: 0.75rem; border-radius: var(--r-sm);
}

.feature-mockup-inner img {
    width: 100%; height: 100%; object-fit: cover;
}

.feature-mockup-frame {
    padding: 0;
    overflow: hidden;
}
.feature-mockup-frame .glass-toolbar {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.feature-mockup-frame .feature-mockup {
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    border-top: none;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works { padding: 7rem 0; position: relative; background: var(--bg); }
.steps-row { display: flex; align-items: stretch; justify-content: center; }
.step-card { flex: 1; max-width: 300px; padding: 2rem; text-align: center; }
.step-num { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--s100); border: 1px solid var(--s200); color: var(--s700); font-size: 0.9rem; font-weight: 800; border-radius: 50%; margin: 0 auto 1.25rem; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--s900); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--s500); line-height: 1.65; }
.step-connector { display: flex; align-items: center; padding: 0 0.25rem; padding-top: 2rem; }
.step-connector span { display: block; width: 40px; height: 2px; background: repeating-linear-gradient(90deg, var(--s200) 0, var(--s200) 6px, transparent 6px, transparent 10px); }

/* ═══════════════════════════════════════
   SHOWCASE
   ═══════════════════════════════════════ */
.showcase { padding: 7rem 0; }
.showcase-grid { display: grid; grid-template-columns: 0.45fr 0.55fr; gap: 4rem; align-items: center; }
.phone-card { max-width: 280px; margin: 0 auto; padding: 1.25rem; }
.phone-order-list { margin-bottom: 0.75rem; }
.phone-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.85rem; color: var(--s600); border-bottom: 1px solid var(--s100); }
.phone-row.bold { border: none; font-weight: 700; color: var(--s900); }
.phone-divider { height: 1px; background: var(--s200); margin: 0.25rem 0; }
.phone-pay-btn { background: var(--s900); color: var(--white); text-align: center; padding: 0.75rem; border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 700; }

.showcase-content h2 { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; color: var(--s900); margin-bottom: 1rem; }
.showcase-content p { font-size: 1rem; color: var(--s500); line-height: 1.7; margin-bottom: 1.5rem; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--s700); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--s200); flex-shrink: 0; position: relative; }
.check-icon::after { content: ''; position: absolute; top: 5px; left: 7px; width: 5px; height: 8px; border: solid var(--s700); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing { padding: 6rem 0; position: relative; }

/* Toggle */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.toggle-label { font-size: 0.875rem; font-weight: 600; color: var(--s400); transition: color 0.3s; }
.toggle-label.active { color: var(--s900); }

.pricing-toggle-switch {
    width: 52px; height: 28px; background: var(--s200); border-radius: 14px;
    position: relative; cursor: pointer; border: none; padding: 0;
    transition: background 0.3s;
}
.pricing-toggle-switch::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 22px; height: 22px; border-radius: 50%; background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.pricing-toggle-switch.annual { background: var(--s900); }
.pricing-toggle-switch.annual::after { transform: translateX(24px); }

.savings-badge {
    font-size: 0.7rem; font-weight: 700; color: var(--emerald);
    background: rgba(16,185,129,0.08); padding: 0.2rem 0.5rem; border-radius: var(--r-pill);
}

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 960px; margin: 0 auto; align-items: stretch; }
.pricing-card { padding: 2rem; position: relative; overflow: visible; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.12); }
.pricing-card.glass-card { overflow: visible; }
.pricing-card.glass-card::after { border-radius: var(--r-lg); }

.pricing-featured {
    background: var(--glass-bg-strong);
    border: 1.5px solid var(--s800);
    box-shadow: 0 16px 48px rgba(3,2,19,0.10), 0 1px 0 rgba(255,255,255,0.6) inset;
    padding: 2rem;
    z-index: 1;
}
.pricing-featured:hover { box-shadow: 0 20px 50px rgba(3,2,19,0.14), 0 1px 0 rgba(255,255,255,0.7) inset; }

.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--s900); color: var(--white); font-size: 0.7rem; font-weight: 700;
    padding: 0.3rem 1rem; border-radius: var(--r-pill); white-space: nowrap;
    box-shadow: 0 2px 12px rgba(3,2,19,0.25);
    z-index: 2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--s900); margin-bottom: 0.25rem; }
.pricing-desc { font-size: 0.8rem; color: var(--s400); margin-bottom: 1.25rem; min-height: 2.4rem; }
.pricing-trial { font-size: 0.72rem; font-weight: 700; color: var(--s400); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; min-height: 2.2rem; }
.price { font-size: 4.5rem; font-weight: 900; color: var(--s900); letter-spacing: -0.05em; margin-bottom: 1.5rem; line-height: 1; display: flex; align-items: baseline; gap: 0.15em; min-height: 4.5rem; }
.price span:first-child { font-size: 1em; font-weight: 900; color: inherit; }
.price span:last-child { font-size: 1.1rem; font-weight: 500; color: var(--s400); letter-spacing: 0; }
.price.price-custom { align-items: center; }
.price.price-custom .price-num { font-size: 3rem; letter-spacing: -0.03em; }
.pricing-list { list-style: none; margin-bottom: 1.5rem; }
.pricing-list li { font-size: 0.85rem; font-weight: 600; color: var(--s800); padding: 0.375rem 0 0.375rem 1.25rem; position: relative; }
.pricing-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--s500); }

/* "Everything in X, plus:" row */
.pricing-list li.pricing-inherit { font-weight: 800; color: var(--s900); padding-left: 0; border-bottom: 1px solid var(--s100); padding-bottom: 0.6rem; margin-bottom: 0.25rem; }
.pricing-list li.pricing-inherit::before { display: none; }

/* Feature tooltips */
.pricing-list li[data-tip] { cursor: help; }
.pricing-list li[data-tip]:not(.pricing-inherit) { text-decoration: underline dotted var(--s300); text-underline-offset: 3px; }
.pricing-list li[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 6px);
    left: -1.25rem; right: -1rem;
    background: var(--s950);
    color: rgba(255,255,255,0.85);
    padding: 0.6rem 0.8rem;
    border-radius: var(--r-md);
    font-size: 0.73rem; font-weight: 400; line-height: 1.5;
    opacity: 0; pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 30; white-space: normal;
    box-shadow: 0 8px 24px rgba(3,2,19,0.2);
}
.pricing-list li[data-tip]:hover::after { opacity: 1; }
.pricing-card .btn-dark, .pricing-card .btn-outline-dark { margin-top: auto; }

/* Billing toggle */
.pricing-billing-toggle { display: flex; align-items: center; justify-content: center; gap: 0.875rem; margin-bottom: 3rem; }
.billing-toggle-btn { position: relative; width: 52px; height: 28px; background: var(--s200); border: none; border-radius: 14px; cursor: pointer; transition: background 0.25s; flex-shrink: 0; }
.billing-toggle-btn.is-annual { background: var(--s900); }
.billing-toggle-knob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; background: var(--white); border-radius: 50%; transition: transform 0.25s; box-shadow: 0 1px 4px rgba(0,0,0,0.18); }
.billing-toggle-btn.is-annual .billing-toggle-knob { transform: translateX(24px); }
.billing-toggle-label { font-size: 0.9rem; font-weight: 700; color: var(--s400); transition: color 0.2s; }
.billing-toggle-label.is-active { color: var(--s900); }
.billing-save-badge { display: inline-block; background: var(--s900); color: var(--white); font-size: 0.68rem; font-weight: 800; padding: 0.15rem 0.55rem; border-radius: 20px; vertical-align: middle; margin-left: 0.3rem; letter-spacing: 0.02em; }
.price-billing-note { font-size: 0.78rem; font-weight: 600; color: var(--s400); min-height: 1.15em; margin-top: 0.15rem; margin-bottom: 0; }

.pricing-fee-note { display: flex; align-items: center; gap: 0.5rem; margin: 1rem 0 1.5rem; padding: 0.75rem 1rem; background: var(--s50); border: 1px solid var(--s200); border-radius: var(--r-md); font-size: 0.78rem; color: var(--s500); font-weight: 600; }
.pricing-fee-note strong { color: var(--s900); font-size: 1.1rem; font-weight: 900; letter-spacing: -0.03em; }

/* Fee transparency banner (pricing page hero) */
.pricing-notice { display: flex; align-items: center; gap: 2rem; background: var(--s50); border: 1px solid var(--s200); border-radius: var(--r-xl); padding: 1.75rem 2.25rem; }
.pricing-notice-stat { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; gap: 0.15rem; }
.pricing-notice-num { font-size: 3.5rem; font-weight: 900; color: var(--s900); letter-spacing: -0.06em; line-height: 1; }
.pricing-notice-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--s400); white-space: nowrap; }
.pricing-notice-divider { width: 1px; align-self: stretch; background: var(--s200); flex-shrink: 0; }
.pricing-notice-body { font-size: 0.83rem; color: var(--s500); line-height: 1.65; }
.pricing-notice-body strong { color: var(--s900); font-weight: 700; display: block; margin-bottom: 0.3rem; font-size: 0.88rem; }

/* Comparison Table */
.comparison-table { margin-top: 4rem; background: rgba(255,255,255,0.40); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4); border: 1px solid rgba(255,255,255,0.30); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 8px 32px rgba(3,2,19,0.04), 0 1px 0 rgba(255,255,255,0.5) inset; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 0.75rem 1rem; font-size: 0.85rem; text-align: left; border-bottom: 1px solid rgba(226,232,240,0.4); }
.comparison-table th { font-weight: 700; color: var(--s900); background: rgba(248,250,252,0.6); }
.comparison-table td { color: var(--s600); font-weight: 500; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .check-mark { color: var(--emerald); font-weight: 700; }
.comparison-table .dash-mark { color: var(--s300); }

/* FAQ */
.faq-section { padding: 4rem 0; position: relative; }
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
    border-top: 1px solid var(--s100);
}

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0; background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--s900);
    text-align: left; transition: color 0.2s;
}

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

.faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer p {
    font-size: 0.9rem; color: var(--s500); line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 7rem 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial-card { padding: 2.25rem; display: flex; flex-direction: column; }
.testimonial-stars { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--s700); margin-bottom: 1.25rem; }
.testimonial-quote { font-size: 0.9375rem; color: var(--s700); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.4), rgba(51,65,85,0.35));
    border: 2px solid var(--s100);
}
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--s200); display: flex; align-items: center; justify-content: center; color: var(--s600); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--s900); }
.testimonial-author span { font-size: 0.75rem; color: var(--s400); }

/* ═══════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════ */
.integrations { padding: 6rem 0; position: relative; }
.integrations-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0.75rem; max-width: 720px; margin: 0 auto; }
.integration-item { text-align: center; padding: 1.25rem 0.5rem; border-radius: var(--r-lg); }
.integration-item strong { font-size: 0.8rem; font-weight: 600; color: var(--s600); }

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section { padding: 4rem 0; }
.cta-card {
    text-align: center; padding: 5rem 2rem;
    background: var(--s950) !important; border-color: rgba(255,255,255,0.06) !important; color: var(--white);
    backdrop-filter: none;
    position: relative; overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -60%; left: 30%; right: 30%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.cta-card::after { display: none; }
.cta-card:hover { box-shadow: 0 24px 80px rgba(3,2,19,0.35); }
.cta-card h2 { font-size: 2.75rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0.75rem; }
.cta-card p { font-size: 1rem; color: var(--s400); margin-bottom: 2rem; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cta-card .btn-dark { background: var(--white); color: var(--s900); }
.cta-card .btn-dark:hover { background: var(--s100); box-shadow: 0 4px 16px rgba(255,255,255,0.15); }
.cta-card .btn-ghost { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.cta-card .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-story { padding: 4rem 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-story-text h2 { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; color: var(--s900); margin-bottom: 1rem; line-height: 1.15; }
.about-story-text p { font-size: 0.95rem; color: var(--s500); line-height: 1.7; margin-bottom: 1rem; }
.about-story-visual { display: flex; align-items: center; justify-content: center; }

.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 4rem 0; }
.stat-item { text-align: center; padding: 1.5rem; background: rgba(255,255,255,0.40); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); border: 1px solid rgba(255,255,255,0.30); border-radius: var(--r-lg); box-shadow: 0 4px 16px rgba(3,2,19,0.04), 0 1px 0 rgba(255,255,255,0.5) inset; }
.stat-number { display: block; font-size: 2.5rem; font-weight: 900; color: var(--s900); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.8rem; color: var(--s400); font-weight: 600; }

/* ═══ HERO STATS — clean light band ═══ */
.stats-hero {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.stats-hero::after { display: none; }
.stats-hero-row {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem 0 2.5rem;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.stats-hero .stat-item {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.stats-hero .stat-number { color: var(--s900); font-size: 3.25rem; }
.stats-hero .stat-label { color: var(--s500); letter-spacing: 0.04em; }

/* Counter pulse on complete */
.count-done { animation: countPulse 0.3s ease; }
@keyframes countPulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.team-section { padding: 4rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.team-card { padding: 1.5rem; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--s200); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; color: var(--s600); }
.team-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--s900); margin-bottom: 0.125rem; }
.team-card p { font-size: 0.8rem; color: var(--s400); }

.values-section { padding: 4rem 0; position: relative; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.value-card { padding: 2rem; }
.value-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--s900); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--s500); line-height: 1.65; }

/* ═══════════════════════════════════════
   BLOG PAGE
   ═══════════════════════════════════════ */
.blog-filters { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-pill {
    padding: 0.4rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--s200);
    background: transparent; color: var(--s500); font-size: 0.8rem; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover { background: var(--s900); color: var(--white); border-color: var(--s900); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.blog-card { overflow: hidden; }
.blog-card-img {
    height: 180px; background: var(--s100); border-radius: var(--r-md) var(--r-md) 0 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--s400); font-weight: 600; margin: -1px -1px 0 -1px;
    overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--s400); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--s900); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-body p { font-size: 0.85rem; color: var(--s500); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--s400); font-weight: 500; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--s300); }

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; padding: 4rem 0; }

.contact-form-wrap { padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { position: relative; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--s600); margin-bottom: 0.375rem; }

.glass-input {
    width: 100%; padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--s200);
    border-radius: var(--r-md);
    font-family: inherit; font-size: 0.9rem; color: var(--s900);
    outline: none; transition: all 0.3s ease;
}

.glass-input:focus {
    border-color: var(--s400);
    box-shadow: 0 0 0 4px rgba(148,163,184,0.12), 0 4px 16px rgba(3,2,19,0.04);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-input::placeholder { color: var(--s300); }

textarea.glass-input { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info h3 { font-size: 1.15rem; font-weight: 700; color: var(--s900); }

.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-detail-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--s100); display: flex; align-items: center; justify-content: center; color: var(--s600); flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--s900); margin-bottom: 0.125rem; }
.contact-detail span { font-size: 0.85rem; color: var(--s500); }

/* ═══════════════════════════════════════
   HELP CENTER
   ═══════════════════════════════════════ */
.search-bar-wrap { max-width: 500px; margin: 2rem auto 4rem; position: relative; }
.search-bar {
    width: 100%; padding: 0.875rem 1.25rem 0.875rem 3rem;
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1.5px solid var(--glass-border); border-radius: var(--r-pill);
    font-family: inherit; font-size: 0.95rem; color: var(--s900); outline: none;
    transition: all 0.3s;
}
.search-bar:focus { border-color: var(--s400); box-shadow: 0 0 0 4px rgba(148,163,184,0.12), 0 8px 24px rgba(3,2,19,0.05); }
.search-bar::placeholder { color: var(--s400); }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--s400); pointer-events: none; }

.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 4rem; }
.help-category { padding: 2rem; text-align: center; cursor: pointer; }
.help-cat-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.help-category h3 { font-size: 1rem; font-weight: 700; color: var(--s900); margin-bottom: 0.25rem; }
.help-category p { font-size: 0.8rem; color: var(--s400); }

.popular-articles { padding: 2rem 0 4rem; position: relative; }
.articles-list { max-width: 700px; margin: 0 auto; }
.article-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid var(--s100);
    text-decoration: none; transition: color 0.2s;
}
.article-item:hover { color: var(--s600); }
.article-item span { font-size: 0.9rem; font-weight: 500; color: var(--s700); }
.article-item svg { color: var(--s300); flex-shrink: 0; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--s950); color: var(--white); padding: 4rem 2rem 0; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-size: 1rem; font-weight: 800; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.75rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   PRICING DARK CARD (homepage featured)
   ═══════════════════════════════════════ */
.pricing-featured-dark {
    background: var(--s900);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 28px 80px rgba(3,2,19,0.22), 0 1px 0 rgba(255,255,255,0.07) inset;
    padding: 2.5rem 2rem;
    z-index: 1;
    position: relative;
}
.pricing-featured-dark:hover { box-shadow: 0 32px 90px rgba(3,2,19,0.28), 0 1px 0 rgba(255,255,255,0.07) inset; }
.pricing-featured-dark .pricing-badge { background: var(--white); color: var(--s900); border: none; box-shadow: 0 2px 12px rgba(3,2,19,0.35); }
.pricing-featured-dark h3 { color: var(--white); }
.pricing-featured-dark .pricing-desc { color: rgba(255,255,255,0.4); }
.pricing-featured-dark .price { color: var(--white); }
.pricing-featured-dark .price span { color: rgba(255,255,255,0.4); }
.pricing-featured-dark .pricing-trial { color: rgba(255,255,255,0.35); }
.pricing-featured-dark .pricing-fee-note { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
.pricing-featured-dark .pricing-fee-note strong { color: var(--white); }
.pricing-featured-dark .pricing-list li { color: rgba(255,255,255,0.82); }
.pricing-featured-dark .pricing-list li::before { background: rgba(255,255,255,0.3); }
.pricing-featured-dark .pricing-list li.pricing-inherit { color: rgba(255,255,255,0.95); border-bottom-color: rgba(255,255,255,0.12); }
.pricing-featured-dark .btn-dark { background: var(--white); color: var(--s900); }
.pricing-featured-dark .btn-dark:hover { background: var(--s100); }

/* ─── Pricing: modern checkmark list ─── */
.pricing-list-check { list-style: none; margin-bottom: 1.5rem; }
.pricing-list-check li {
    font-size: 0.85rem; font-weight: 500; color: var(--s600);
    padding: 0.4rem 0 0.4rem 1.625rem; position: relative;
}
.pricing-list-check li::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; border-radius: 50%; background: var(--s100);
}
.pricing-list-check li::after {
    content: ''; position: absolute;
    left: 5px; top: 46%; width: 5px; height: 8px;
    border: solid var(--s500); border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}
.pricing-featured-dark .pricing-list-check li { color: rgba(255,255,255,0.75); }
.pricing-featured-dark .pricing-list-check li::before { background: rgba(255,255,255,0.1); }
.pricing-featured-dark .pricing-list-check li::after { border-color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   DEVICE TAGS (Hardware section)
   ═══════════════════════════════════════ */
.device-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.device-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: var(--glass-bg);
    border: 1px solid var(--glass-border); border-radius: var(--r-pill);
    backdrop-filter: blur(8px); font-size: 0.8rem; font-weight: 600; color: var(--s700);
    transition: background 0.2s, border-color 0.2s;
}
.device-tag:hover { background: var(--glass-bg-strong); border-color: var(--s300); }
.device-tag svg { flex-shrink: 0; }

/* ═══════════════════════════════════════
   INDUSTRY SECTION
   ═══════════════════════════════════════ */
.industry-section { padding: 7rem 0; background: var(--s50); }
.industry-pills-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.industry-pill-card {
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    padding: 1.5rem 2rem; background: var(--glass-bg);
    border: 1px solid var(--glass-border); border-radius: var(--r-lg);
    backdrop-filter: blur(12px); text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    min-width: 120px;
}
.industry-pill-card:hover { background: var(--glass-bg-strong); border-color: var(--s300); transform: translateY(-3px); }
.industry-pill-icon {
    width: 52px; height: 52px; border-radius: var(--r-md);
    background: var(--s100); border: 1px solid var(--s200);
    display: flex; align-items: center; justify-content: center; color: var(--s700); font-size: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
}
.industry-pill-card:hover .industry-pill-icon {
    background: var(--s200); border-color: var(--s300);
}
.industry-pill-label { font-size: 0.9rem; font-weight: 700; color: var(--s900); }
.industry-view-all {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.875rem; font-weight: 600; color: var(--s400);
    text-decoration: none; margin-top: 2rem; transition: color 0.2s;
}
.industry-view-all:hover { color: var(--s700); }

/* ═══════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════ */
.security-section { padding: 7rem 0; background: var(--white); }

/* Security — split layout */
.sec-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: stretch; }

/* Left: dark hero card */
.sec-hero-card { background: #0d1117 !important; border-color: rgba(255,255,255,0.07) !important; }
.sec-hero-visual {
    height: 220px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sec-hero-icon {
    width: 76px; height: 76px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
}
.sec-hero-badge {
    display: flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-pill); padding: 0.4rem 1rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.sec-hero-badge span { color: #10b981; }
.sec-hero-card .bento-eyebrow { color: rgba(255,255,255,0.3); }
.sec-hero-card h3 { color: var(--white); }
.sec-hero-card p { color: rgba(255,255,255,0.45); }

/* Right: stacked feature list */
.sec-feat-card { display: flex; flex-direction: column; }
.sec-feat-list { display: flex; flex-direction: column; flex: 1; }
.sec-feat-row {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.85rem 2rem; flex: 1;
}
.sec-feat-row + .sec-feat-row { border-top: 1px solid var(--s100); }
.sec-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--s100); border: 1px solid var(--s200);
    border-radius: var(--r-md); color: var(--s700); margin-top: 0.1rem;
}
.sec-feat-row h4 { font-size: 0.95rem; font-weight: 800; color: var(--s900); letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.sec-feat-row p { font-size: 0.83rem; color: var(--s500); line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
    .sec-bento { grid-template-columns: 1fr; }
}

/* Legacy grid classes kept for other pages */
.security-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.security-features { display: flex; flex-direction: column; gap: 2rem; }
.security-item h4 { font-size: 1rem; font-weight: 700; color: var(--s900); margin-bottom: 0.375rem; }
.security-item p { font-size: 0.875rem; color: var(--s500); line-height: 1.65; }
.security-item-icon {
    width: 38px; height: 38px; border-radius: var(--r-md);
    background: var(--s100); border: 1px solid var(--s200);
    display: flex; align-items: center; justify-content: center; color: var(--s700); margin-bottom: 0.625rem;
}

/* ─── Owners section mini features ─── */
.owners-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.owner-feature-row { display: flex; gap: 0.875rem; align-items: flex-start; }
.owner-feature-icon {
    width: 38px; height: 38px; border-radius: var(--r-md);
    background: var(--s100); border: 1px solid var(--s200);
    display: flex; align-items: center; justify-content: center; color: var(--s700); flex-shrink: 0;
}
.owner-feature-row h4 { font-size: 0.9rem; font-weight: 700; color: var(--s900); margin-bottom: 0.2rem; }

/* ─── Owners Bento (new layout) ─── */
.owners-bento { display: grid; grid-template-columns: 3fr 2fr; gap: 1.25rem; align-items: stretch; }
.owners-bento-right { display: flex; flex-direction: column; gap: 1.25rem; }
.owners-bento-right .bento-card { flex: 1; }

.owners-dash-visual {
    height: 300px; background: #0d1117; padding: 1.5rem;
    display: flex; flex-direction: column;
}
.owners-dash-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.owners-dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; flex-shrink: 0; }
.owners-dash-name { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.65); flex: 1; }
.owners-live-badge { font-size: 0.58rem; font-weight: 700; color: #10b981; background: rgba(16,185,129,0.12); border-radius: 20px; padding: 2px 8px; }
.owners-dash-revenue { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.25rem; }
.owners-dash-num { font-size: 2.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.owners-dash-pct { font-size: 0.7rem; font-weight: 700; color: #10b981; background: rgba(16,185,129,0.15); border-radius: 20px; padding: 3px 8px; }
.owners-dash-sublabel { font-size: 0.62rem; color: rgba(255,255,255,0.28); margin-bottom: 1rem; }
.owners-chart { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.owners-chart-bars { display: flex; align-items: flex-end; gap: 0.3rem; flex: 1; }
.owners-chart-bar { flex: 1; background: rgba(255,255,255,0.1); border-radius: 3px 3px 0 0; }
.owners-chart-bar.hi { background: rgba(255,255,255,0.38); }
.owners-chart-labels { display: flex; gap: 0.3rem; margin-top: 0.4rem; }
.owners-chart-labels span { flex: 1; text-align: center; font-size: 0.52rem; color: rgba(255,255,255,0.22); }
.owners-dash-footer {
    display: flex; gap: 0.75rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 0.75rem;
}
.owners-dash-stat { flex: 1; }
.owners-dash-stat-lbl { display: block; font-size: 0.56rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.28); margin-bottom: 0.18rem; }
.owners-dash-stat-val { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.72); }

.owners-feat-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.owners-feat-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--s100); border: 1px solid var(--s200);
    border-radius: var(--r-md); color: var(--s700); margin-bottom: 0.25rem; flex-shrink: 0;
}
.owners-feat-body h4 { font-size: 0.95rem; font-weight: 800; color: var(--s900); letter-spacing: -0.02em; line-height: 1.25; margin: 0; }
.owners-feat-body p { font-size: 0.83rem; color: var(--s500); line-height: 1.55; margin: 0; }

@media (max-width: 1024px) {
    .owners-bento { grid-template-columns: 1fr; }
    .owners-bento-right { flex-direction: row; }
    .owners-dash-visual { height: 240px; }
}
@media (max-width: 640px) {
    .owners-bento-right { flex-direction: column; }
}
.owner-feature-row p { font-size: 0.825rem; color: var(--s500); line-height: 1.6; }

/* ─── Owner analytics mockup (replaces placeholder img) ─── */
.owner-analytics-mock {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: var(--r-xl);
    padding: 2rem;
    box-shadow: 0 24px 72px rgba(3,2,19,0.10), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.oam-header {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.07em; color: var(--s400); margin-bottom: 1.25rem;
}
.oam-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.oam-revenue { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.oam-big {
    font-size: 2.75rem; font-weight: 900; letter-spacing: -0.04em; color: var(--s900); line-height: 1;
}
.oam-badge {
    display: inline-flex; align-items: center; gap: 0.2rem;
    font-size: 0.72rem; font-weight: 700; color: var(--emerald);
    background: rgba(16,185,129,0.10); border: 1px solid rgba(16,185,129,0.20);
    border-radius: 100px; padding: 0.2rem 0.6rem;
}
.oam-bars-wrap { margin-bottom: 1.25rem; }
.oam-bars { display: flex; align-items: flex-end; gap: 0.4rem; height: 72px; }
.oam-bar {
    flex: 1; border-radius: 3px 3px 0 0;
    background: var(--s200);
}
.oam-bar.peak { background: linear-gradient(to top, var(--s900), var(--s700)); }
.oam-bar-labels { display: flex; gap: 0.4rem; margin-top: 5px; }
.oam-bar-labels span { flex: 1; font-size: 0.58rem; color: var(--s400); text-align: center; font-weight: 500; }
.oam-stats-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem; margin-top: 0.25rem;
}
.oam-stat {
    background: var(--s50); border-radius: var(--r-md); padding: 0.75rem;
}
.oam-stat-label { display: block; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--s400); margin-bottom: 0.25rem; }
.oam-stat-val { display: block; font-size: 0.9rem; font-weight: 800; color: var(--s900); letter-spacing: -0.02em; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-up {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.35s cubic-bezier(0.2,0,0,1),
                transform 0.35s cubic-bezier(0.2,0,0,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   HARDWARE CARD — Canvas Aurora
   ═══════════════════════════════════════ */

.hardware-card {
    position: relative;
    overflow: hidden;
}

/* Full-bleed canvas behind all content */
.hw-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* ── Assembly pieces — 4 glass quadrant tiles that fly in from corners ── */
.hw-piece {
    position: absolute;
    /* Each piece covers one quadrant + 2px overlap to seal the seam */
    width: calc(50% + 2px);
    height: calc(50% + 2px);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.07);
    pointer-events: none;
    z-index: 5;
    will-change: transform, opacity;
}
/* Corner positions + matching border-radius */
.hw-piece-tl { top: 0;    left: 0;  border-radius: var(--r-xl) 0 0 0; }
.hw-piece-tr { top: 0;    right: 0; border-radius: 0 var(--r-xl) 0 0; }
.hw-piece-bl { bottom: 0; left: 0;  border-radius: 0 0 0 var(--r-xl); }
.hw-piece-br { bottom: 0; right: 0; border-radius: 0 0 var(--r-xl) 0; }

/* ── CTA ambient orbs ── */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
    will-change: transform;
}
.cta-orb-1 {
    width: 500px; height: 280px;
    top: -80px; left: 0%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: ctaOrbFloat 9s ease-in-out infinite;
}
.cta-orb-2 {
    width: 400px; height: 240px;
    bottom: -60px; right: 0%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: ctaOrbFloat 11s ease-in-out infinite reverse;
    animation-delay: -4s;
}
@keyframes ctaOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(30px, -30px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    body::before, body::after { animation: none; }
    .island { animation: none; opacity: 1; }
    .hero-pos { animation: none; will-change: auto; }
    .marquee-track { animation: none; }
    .hero-showcase { animation: none; }
    .hw-canvas { display: none; }
    .cta-orb { animation: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-pos-body { grid-template-columns: 140px 1fr; height: 300px; }
    .pos-order { display: none; }
    .pos-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-wide { grid-column: span 1; }
    .feature-card-full { flex-direction: column; gap: 1.5rem; }
    .hero-h1 { font-size: 3rem; }
    .page-hero h1 { font-size: 2.75rem; }
    .compare-wrap { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .feature-detail { grid-template-columns: 1fr; gap: 2rem; }
    .feature-detail.reverse { direction: ltr; }
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: 1/-1; max-width: 480px; margin: 0 auto; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
    .island-links, .island-login { display: none; }
    .island-pill { padding: 0.4rem 0.4rem 0.4rem 1rem; }
    .island-hamburger { display: flex; }
    .mega-menu { display: none !important; }

    .hero { padding-top: 100px; }
    .hero-pos-body { display: none; }
    .hero-h1 { font-size: 2.5rem; }
    .page-hero { padding-top: 100px; }
    .page-hero h1 { font-size: 2.25rem; }
    .hero-cards { grid-template-columns: 1fr; }
    .hero-card-main { grid-row: auto; }
    .section-head h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card-wide { grid-column: span 1; }
    .feature-card-full { flex-direction: column; gap: 1.5rem; }
    .steps-row { flex-direction: column; align-items: center; gap: 1rem; }
    .step-connector { transform: rotate(90deg); padding: 0; }
    .showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .showcase-visual { order: -1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { max-width: none; }
    .integrations-grid { grid-template-columns: repeat(3,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .help-grid { grid-template-columns: repeat(2,1fr); }
    .about-story-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .stats-row { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .dashboard-stats { grid-template-columns: repeat(2,1fr); }
    .comparison-table { overflow-x: auto; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 1.75rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .dashboard-stats { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: repeat(2,1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .help-grid { grid-template-columns: 1fr; }
    .section-head h2 { font-size: 1.75rem; }
}

@media (max-width: 360px) {
    .hero-h1 { font-size: 1.75rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .container { padding: 0 1rem; }
    .island-pill { padding: 0.35rem 0.35rem 0.35rem 0.75rem; }
    .island-logo { font-size: 0.8rem; }
}

/* ═══════════════════════════════════════
   BRAND IDENTITY PAGE
   ═══════════════════════════════════════ */

/* ── Global dark canvas for brand page ── */
.brand-page body { background: #030213; }

.brand-hero {
    background: #030213;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
}
.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 30%, rgba(148,163,184,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(148,163,184,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.brand-hero-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.25);
    margin-bottom: 3rem;
    position: relative;
}
.brand-hero-mark-wrap {
    position: relative;
    margin-bottom: 2.5rem;
}
.brand-hero-mark {
    height: 96px;
    width: auto;

    position: relative;
    z-index: 1;
}
.brand-hero-mark-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.brand-hero-name {
    font-size: clamp(5rem, 13vw, 11rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.045em;
    line-height: 0.9;
    margin: 0 0 2rem;
    position: relative;
}
.brand-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.32);
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
}
.brand-hero-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
    margin: 3rem auto 0;
}

/* ── Section wrapper ── */
.brand-section {
    background: #030213;
    padding: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.brand-section-eyebrow {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.22);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.brand-section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* ── Logo system grid ── */
.brand-logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    gap: 1px;
    background: rgba(255,255,255,0.09); /* gap colour */
}
.brand-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    padding: 2.5rem;
}
.brand-cell-dark  { background: #030213; }
.brand-cell-mid   { background: #0F172A; }
.brand-cell-slate { background: #1E293B; }
.brand-cell-light { background: #F1F5F9; }
.brand-cell-white { background: #FFFFFF; }

.brand-cell-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.4rem;
    font-size: 0.57rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.2);
}
.brand-cell-light .brand-cell-tag,
.brand-cell-white .brand-cell-tag { color: rgba(15,23,42,0.25); }

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.brand-lockup-mark {
    height: 36px;
    width: auto;
}
.brand-lockup-mark-inv { filter: brightness(0) invert(1); }
.brand-lockup-mark-drk { filter: brightness(0); }
.brand-lockup-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}
.brand-lockup-name-dark { color: #030213; }

.brand-mark-solo {
    height: 56px;
    width: auto;
}

/* ── Colour palette ── */
.brand-palette {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1.5fr;
    height: 280px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    gap: 1px;
    background: rgba(255,255,255,0.09);
}
.brand-swatch {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem 1rem;
}
.brand-swatch-name {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.2rem;
    opacity: 0.55;
}
.brand-swatch-hex {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    opacity: 0.75;
}
.brand-swatch-dark  { color: #fff; }
.brand-swatch-light { color: #030213; }

/* ── Typography specimen ── */
.brand-type-hero {
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 0;
}
.brand-type-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
.brand-alphabet-row {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    line-height: 1.4;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    word-break: break-all;
}
.brand-weights-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    gap: 1px;
    background: rgba(255,255,255,0.09);
    margin-top: 3rem;
}
.brand-weight-cell {
    background: #030213;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.brand-weight-sample {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.brand-weight-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: auto;
}
.brand-weight-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.22);
}
.brand-weight-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

/* ── Brand voice ── */
.brand-voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.09);
}
.brand-voice-cell {
    background: #030213;
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 170px;
}
.brand-voice-cell-wide {
    grid-column: span 2;
    background: #0A0A1A;
    display: flex;
    align-items: center;
    padding: 3rem;
    min-height: 120px;
}
.brand-voice-label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0.75rem;
}
.brand-voice-quote {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.brand-voice-cell-wide .brand-voice-quote {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* ── Principles ── */
.brand-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.09);
}
.brand-principle-cell {
    background: #030213;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.brand-principle-num {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.2);
}
.brand-principle-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.brand-principle-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
}

/* ── Usage — dos/don'ts ── */
.brand-usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.09);
}
.brand-usage-col { background: #030213; padding: 2.5rem; }
.brand-usage-head {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
}
.brand-usage-do   .brand-usage-head { color: #10B981; }
.brand-usage-dont .brand-usage-head { color: #D4183D; }
.brand-usage-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.brand-usage-list li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}
.brand-usage-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.18);
}

/* ── End mark ── */
.brand-end {
    background: #030213;
    padding: 8rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.brand-end-mark-img {
    height: 48px;
    width: auto;

    opacity: 0.15;
}
.brand-end-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .brand-section { padding: 2.5rem 1.5rem; }
    .brand-logo-grid { grid-template-rows: 200px 200px; }
    .brand-palette { grid-template-columns: repeat(4, 1fr); height: auto; }
    .brand-palette .brand-swatch:nth-child(n+5) { display: none; }
    .brand-weights-row { grid-template-columns: repeat(3, 1fr); }
    .brand-weights-row .brand-weight-cell:nth-child(n+4) { display: none; }
    .brand-principles-grid { grid-template-columns: 1fr 1fr; }
    .brand-voice-grid { grid-template-columns: 1fr; }
    .brand-voice-cell-wide { grid-column: span 1; }
    .brand-usage-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .brand-logo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
    .brand-principles-grid { grid-template-columns: 1fr; }
    .brand-weights-row { grid-template-columns: 1fr 1fr; }
}
/* ═══════════════════════════════════════════════
   BRAND KIT PAGE  (brand-kit.html)
   ═══════════════════════════════════════════════ */

/* ─── Hero overrides ─── */
.bk-hero-shell { padding-bottom: 0; }
.bk-hero { padding-bottom: 2rem; }

/* ─── Section tab nav ─── */
.bk-section-nav {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(3,2,19,0.6);
    backdrop-filter: blur(20px);
    padding-bottom: 5rem;
}
.bk-section-nav::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5rem;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}
.bk-tabs-row {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.25rem 0;
}
.bk-tabs-row::-webkit-scrollbar { display: none; }
.bk-tab {
    flex-shrink: 0;
    padding: 0.75rem 1.125rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
.bk-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }

/* ─── Section shared ─── */
.bk-section { padding: 6rem 0; }
.bk-section-head { text-align: left; margin: 0 0 3.5rem; max-width: 100%; }
.bk-section-head h2 { color: var(--s900); }
.bk-section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c97000;
    margin-bottom: 0.75rem;
}

/* ─── Logo System ─── */
.bk-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.bk-logo-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--s200);
}
.bk-logo-light { background: var(--white); }
.bk-logo-dark { background: #030213; border-color: rgba(255,255,255,0.08); }
.bk-logo-slate { background: var(--s100); }
.bk-logo-stage {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
}
.bk-logo-img { height: 60px; width: auto; object-fit: contain; }
.bk-logo-circle { height: 80px; }
.bk-logo-label-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--s900);
}
.bk-logo-meta {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--s100);
}
.bk-logo-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--s800);
    margin-bottom: 0.2rem;
}
.bk-logo-use { font-size: 0.72rem; color: var(--s500); }

/* Logo rules */
.bk-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.bk-rule {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--r-lg);
}
.bk-rule-do { background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.15); }
.bk-rule-dont { background: rgba(212,24,61,0.04); border: 1px solid rgba(212,24,61,0.12); }
.bk-rule-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bk-rule-do-icon { background: rgba(16,185,129,0.12); color: #059669; }
.bk-rule-dont-icon { background: rgba(212,24,61,0.1); color: #D4183D; }
.bk-rule strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--s900); margin-bottom: 0.6rem; }
.bk-rule ul { padding-left: 1rem; }
.bk-rule li { font-size: 0.8rem; color: var(--s600); line-height: 1.8; }

/* ─── Color Palette ─── */
.bk-palette-row { display: flex; flex-direction: column; gap: 2rem; }
.bk-palette-group {}
.bk-palette-label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--s500); margin-bottom: 0.875rem;
}
.bk-palette-note { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--s400); }
.bk-swatch-strip { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.bk-swatch {
    flex: 1 1 140px;
    min-height: 90px;
    border-radius: var(--r-md);
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.15rem;
}
.bk-swatch-large { min-height: 110px; }
.bk-swatch-name { font-size: 0.75rem; font-weight: 700; }
.bk-swatch-hex { font-size: 0.7rem; font-family: 'SF Mono', 'Fira Code', monospace; opacity: 0.75; }
.bk-swatch-use { font-size: 0.68rem; opacity: 0.6; margin-top: 0.15rem; }

/* Slate scale */
.bk-slate-scale {
    display: flex;
    gap: 0.4rem;
}
.bk-slate-swatch {
    flex: 1;
    min-height: 80px;
    border-radius: var(--r-sm);
    padding: 0.6rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.1rem;
}
.bk-swatch-step { font-size: 0.68rem; font-weight: 700; }

/* ─── Typography ─── */
.bk-type-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
    background: var(--s50);
    border: 1px solid var(--s100);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    margin-bottom: 3rem;
}
.bk-type-family {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--s400);
    margin-bottom: 0.75rem;
}
.bk-type-pangram {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--s900);
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.bk-type-meta { border-left: 1px solid var(--s200); padding-left: 2rem; }
.bk-type-meta-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--s100);
    font-size: 0.78rem;
}
.bk-type-meta-row:last-child { border-bottom: none; }
.bk-type-meta-row span:first-child { color: var(--s400); }
.bk-type-meta-row span:last-child { color: var(--s700); font-weight: 600; }

.bk-weight-grid { display: flex; flex-direction: column; border: 1px solid var(--s100); border-radius: var(--r-xl); overflow: hidden; }
.bk-weight-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--s100);
}
.bk-weight-row:last-child { border-bottom: none; }
.bk-weight-label {
    flex-shrink: 0;
    width: 120px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--s400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bk-weight-sample { font-size: 1.1rem; color: var(--s900); }

.bk-subsection-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--s400);
    margin-bottom: 1.25rem;
}
.bk-scale-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--s100); border-radius: var(--r-xl); overflow: hidden; }
.bk-scale-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--s100);
}
.bk-scale-row:last-child { border-bottom: none; }
.bk-scale-meta { flex-shrink: 0; width: 220px; }
.bk-scale-name { display: block; font-size: 0.8rem; font-weight: 700; color: var(--s800); margin-bottom: 0.2rem; }
.bk-scale-spec { display: block; font-size: 0.67rem; font-family: 'SF Mono', monospace; color: var(--s400); margin-bottom: 0.15rem; }
.bk-scale-use { display: block; font-size: 0.7rem; color: var(--s500); }
.bk-scale-sample { flex: 1; color: var(--s900); line-height: 1.15; }

/* ─── Personas ─── */
.bk-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bk-persona { padding: 1.75rem; }
.bk-persona-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.25rem;
}
.bk-persona-avatar {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bk-persona-avatar span {
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.02em;
}
.bk-persona-ident h3 { font-size: 1rem; font-weight: 800; color: var(--s900); margin-bottom: 0.2rem; }
.bk-persona-role { display: block; font-size: 0.72rem; color: var(--s500); font-weight: 500; margin-bottom: 0.5rem; }
.bk-persona-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.bk-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}
.bk-badge-slate { background: var(--s100); color: var(--s600); }
.bk-persona-tech { display: flex; flex-direction: column; gap: 0.3rem; align-items: flex-end; }
.bk-tech-label { font-size: 0.65rem; color: var(--s400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.bk-tech-stars { display: flex; gap: 2px; }
.bk-star {
    width: 10px; height: 10px;
    border-radius: 2px;
    background: var(--s200);
}
.bk-star.filled { background: #c97000; }
.bk-persona-quote {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--s700);
    line-height: 1.6;
    border-left: 3px solid rgba(245,158,11,0.35);
    padding-left: 1rem;
    margin: 0 0 1.25rem;
}
.bk-persona-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.bk-persona-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.bk-goal-icon { color: #059669; }
.bk-pain-icon { color: var(--s500); }
.bk-persona-col ul { padding-left: 1rem; }
.bk-persona-col li { font-size: 0.77rem; color: var(--s600); line-height: 1.7; }
.bk-persona-devices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--s100);
}
.bk-device-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--s400); margin-right: 0.25rem; }
.bk-device-chip {
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--s100);
    color: var(--s700);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

/* ─── Service Blueprint ─── */
.bk-blueprint-wrap { overflow-x: auto; padding-bottom: 1rem; }
.bk-blueprint {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-width: 900px;
}
.bk-bp-stage {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--s100);
    border-radius: var(--r-lg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 380px;
}
.bk-bp-arrow {
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    color: var(--s300);
    font-size: 1.25rem;
    padding-top: 3.5rem;
    font-weight: 300;
}
.bk-bp-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(245,158,11,0.7);
    text-transform: uppercase;
}
.bk-bp-icon-wrap {
    width: 36px; height: 36px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.14);
    color: #c97000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.bk-bp-stage h4 { font-size: 0.875rem; font-weight: 800; color: var(--s900); }
.bk-bp-row { font-size: 0.75rem; line-height: 1.6; }
.bk-bp-row-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.bk-bp-actor .bk-bp-row-label { color: var(--s500); }
.bk-bp-system .bk-bp-row-label { color: rgba(245,158,11,0.7); }
.bk-bp-actor { background: var(--s50); border-radius: 8px; padding: 0.6rem 0.75rem; }
.bk-bp-system { background: rgba(245,158,11,0.04); border: 1px solid rgba(245,158,11,0.1); border-radius: 8px; padding: 0.6rem 0.75rem; }
.bk-bp-actor p, .bk-bp-system p { font-size: 0.73rem; color: var(--s600); margin: 0; }
.bk-bp-emotion {
    margin-top: auto;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    align-self: flex-start;
}
.bk-emotion-curious { background: var(--s100); color: var(--s600); }
.bk-emotion-hopeful { background: rgba(245,158,11,0.1); color: #92400e; }
.bk-emotion-satisfied { background: rgba(16,185,129,0.08); color: #065F46; }
.bk-emotion-delighted { background: rgba(16,185,129,0.12); color: #065F46; }
.bk-emotion-confident { background: rgba(99,102,241,0.08); color: #4338CA; }
.bk-emotion-loyal { background: #030213; color: rgba(255,255,255,0.8); }

/* ─── UI Components ─── */
.bk-component-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.bk-component-block { padding: 1.75rem; }
.bk-component-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--s400);
    margin-bottom: 1rem;
}
.bk-component-preview {
    padding: 0.5rem 0;
    min-height: 80px;
}
.bk-component-rules {
    padding-top: 1rem;
    border-top: 1px solid var(--s100);
    margin-top: 1rem;
}
.bk-component-rules p {
    font-size: 0.77rem;
    color: var(--s500);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}
.bk-component-rules p:last-child { margin-bottom: 0; }
.bk-component-rules code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.72rem;
    background: var(--s100);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    color: var(--s700);
}

/* ─── Brand Voice ─── */
.bk-voice-traits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.bk-trait {
    background: var(--s50);
    border: 1px solid var(--s100);
    border-radius: var(--r-lg);
    padding: 1.5rem;
}
.bk-trait-icon {
    display: flex;
    width: 36px; height: 36px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.14);
    color: #c97000;
    border-radius: 10px;
    align-items: center; justify-content: center;
    margin-bottom: 0.875rem;
}
.bk-trait strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--s900); margin-bottom: 0.35rem; }
.bk-trait p { font-size: 0.78rem; color: var(--s500); line-height: 1.6; margin: 0; }

/* Copy before/after */
.bk-copy-examples { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.bk-copy-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}
.bk-copy-bad {
    background: rgba(212,24,61,0.03);
    border: 1px solid rgba(212,24,61,0.1);
    border-radius: var(--r-lg);
    padding: 1.25rem;
}
.bk-copy-good {
    background: rgba(16,185,129,0.03);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--r-lg);
    padding: 1.25rem;
}
.bk-copy-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.bk-copy-bad-label { color: #D4183D; }
.bk-copy-good-label { color: #059669; }
.bk-copy-bad p, .bk-copy-good p { font-size: 0.875rem; color: var(--s700); line-height: 1.6; margin: 0; }
.bk-copy-arrow { font-size: 1.5rem; color: var(--s300); flex-shrink: 0; }

/* Vocab grid */
.bk-vocab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 3rem; }
.bk-vocab-block {
    border-radius: var(--r-lg);
    padding: 1.5rem;
}
.bk-vocab-use { background: rgba(16,185,129,0.03); border: 1px solid rgba(16,185,129,0.12); }
.bk-vocab-avoid { background: rgba(212,24,61,0.03); border: 1px solid rgba(212,24,61,0.1); }
.bk-vocab-block h4 { font-size: 0.8rem; font-weight: 700; color: var(--s900); margin-bottom: 0.75rem; }
.bk-vocab-block ul { padding-left: 1rem; }
.bk-vocab-block li { font-size: 0.8rem; color: var(--s600); line-height: 1.9; }

/* Headline examples */
.bk-headline-examples { display: flex; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.bk-headline-ex { display: flex; flex-direction: column; }
.bk-headline-line1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--s900); letter-spacing: -0.04em; line-height: 1.1; }
.bk-headline-line2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--s400); letter-spacing: -0.04em; line-height: 1.1; }
.bk-headline-note {
    font-size: 0.78rem;
    color: var(--s500);
    line-height: 1.7;
}
.bk-headline-note code {
    font-family: 'SF Mono', monospace;
    font-size: 0.72rem;
    background: var(--s100);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    color: var(--s700);
}

/* ─── Mockups Section ─── */
.bk-mockups-section {
    background: #030213;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.bk-mockups-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60vw 50vh at 80% 20%, rgba(245,158,11,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50vw 40vh at 10% 80%, rgba(99,102,241,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.bk-mockup-cover {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.07);
}
.bk-mockup-cover-img { width: 100%; display: block; max-height: 480px; object-fit: cover; }
.bk-mockup-cover-caption {
    position: absolute;
    bottom: 1rem; left: 1.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    background: rgba(3,2,19,0.6);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
}
.bk-mockup-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.bk-mockup-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.bk-mockup-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
}
.bk-mockup-wide .bk-mockup-img-wrap { aspect-ratio: 16/9; }
.bk-mockup-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bk-mockup-caption {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.bk-mockup-caption strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 700; margin-bottom: 0.2rem; }
.bk-mockup-caption span { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ─── CSS App Screens ─── */
.bk-screens-row {
    display: grid;
    grid-template-columns: 1fr 1fr 0.75fr;
    gap: 1.25rem;
}
.bk-screen {
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    overflow: hidden;
}
.bk-screen-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bk-screen-dots { display: flex; gap: 5px; }
.bk-screen-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.bk-screen-title { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.45); }
.bk-screen-body { padding: 1rem; }

/* Analytics screen */
.bk-sa-header { margin-bottom: 0.75rem; }
.bk-sa-label { display: block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.bk-sa-value { display: block; font-size: 1.75rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.2rem; }
.bk-sa-delta { font-size: 0.7rem; color: #10B981; font-weight: 600; }
.bk-sa-chart { display: flex; align-items: flex-end; gap: 4px; height: 70px; margin-bottom: 0.75rem; }
.bk-sa-bar {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 4px 4px 0 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 3px;
}
.bk-sa-bar-active { background: rgba(245,158,11,0.5) !important; }
.bk-sa-bar span { font-size: 0.55rem; color: rgba(255,255,255,0.35); }
.bk-sa-stats { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.bk-sa-stat { flex: 1; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 0.5rem; text-align: center; }
.bk-sa-stat span { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.bk-sa-stat strong { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.bk-sa-top { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 0.75rem; }
.bk-sa-top-label { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem; }
.bk-sa-top-item { display: flex; align-items: center; gap: 0.5rem; }
.bk-sa-top-thumb { width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0; }
.bk-sa-top-item span { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600; flex: 1; }
.bk-sa-top-count { font-size: 0.7rem; color: rgba(255,255,255,0.35); flex-shrink: 0; }

/* KDS screen */
.bk-screen-kds { display: flex; flex-direction: column; gap: 0.6rem; }
.bk-kds-order {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 0.75rem;
}
.bk-kds-urgent { border-color: rgba(212,24,61,0.3); background: rgba(212,24,61,0.05); }
.bk-kds-order-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.bk-kds-order-hdr span { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.bk-kds-time { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.07); padding: 0.15rem 0.4rem; border-radius: 6px; }
.bk-kds-time-warn { color: #D4183D; background: rgba(212,24,61,0.12); }
.bk-kds-order ul { padding-left: 1rem; list-style: disc; }
.bk-kds-order li { font-size: 0.72rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.bk-kds-done {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.4rem;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.2);
    color: #10B981;
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

/* Mobile order screen */
.bk-screen-mobile { }
.bk-screen-order { display: flex; flex-direction: column; gap: 0.75rem; padding: 0.75rem; }
.bk-order-header { display: flex; align-items: center; gap: 0.5rem; }
.bk-order-header span { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.bk-order-cats { display: flex; gap: 0.4rem; }
.bk-ocat { font-size: 0.65rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 6px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.bk-ocat-active { background: rgba(245,158,11,0.15); color: #f59e0b; }
.bk-order-items { display: flex; flex-direction: column; gap: 0.4rem; }
.bk-oitem { display: flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 0.5rem; }
.bk-oitem-selected { border: 1px solid rgba(245,158,11,0.2); background: rgba(245,158,11,0.06); }
.bk-oitem-thumb { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.bk-oitem > div { flex: 1; }
.bk-oitem-name { display: block; font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.bk-oitem-price { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.35); }
.bk-oitem-qty { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.bk-order-footer { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 0.75rem; }
.bk-order-cta {
    background: rgba(255,255,255,0.95);
    color: #030213;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5rem;
}

/* ─── Brand Kit Responsive ─── */
@media (max-width: 1024px) {
    .bk-logo-grid { grid-template-columns: 1fr 1fr; }
    .bk-persona-grid { grid-template-columns: 1fr; }
    .bk-voice-traits { grid-template-columns: 1fr 1fr; }
    .bk-type-hero { grid-template-columns: 1fr; }
    .bk-type-meta { border-left: none; border-top: 1px solid var(--s200); padding: 1.5rem 0 0; }
    .bk-mockup-grid { grid-template-columns: 1fr 1fr; }
    .bk-mockup-wide { grid-column: span 2; }
    .bk-screens-row { grid-template-columns: 1fr 1fr; }
    .bk-screen-mobile { display: none; }
    .bk-component-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .bk-logo-grid { grid-template-columns: 1fr 1fr; }
    .bk-rules-grid { grid-template-columns: 1fr; }
    .bk-copy-pair { grid-template-columns: 1fr; }
    .bk-copy-arrow { text-align: center; font-size: 1.2rem; transform: rotate(90deg); }
    .bk-vocab-grid { grid-template-columns: 1fr; }
    .bk-voice-traits { grid-template-columns: 1fr 1fr; }
    .bk-headline-examples { gap: 1.5rem; }
    .bk-persona-body { grid-template-columns: 1fr; }
    .bk-type-hero { padding: 1.5rem; }
    .bk-mockup-grid { grid-template-columns: 1fr; }
    .bk-mockup-wide { grid-column: span 1; }
    .bk-screens-row { grid-template-columns: 1fr; }
    .bk-screen-mobile { display: none; }
    .bk-slate-scale { flex-wrap: wrap; }
    .bk-slate-swatch { flex: 1 1 60px; }
    .bk-scale-row { flex-direction: column; align-items: flex-start; }
    .bk-scale-meta { width: 100%; }
}

/* ═══════════════════════════════════════
   INDUSTRIES NAV — COMING SOON ITEMS
   ═══════════════════════════════════════ */

.mega-item-coming {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.mega-item-coming div strong::after {
    content: ' ·';
}

/* Ensure content sits above decorative blobs */
.section-has-decor > .container,
.section-has-decor > .container-wide,
.section-has-decor > div:not(.grain) {
    position: relative;
    z-index: 1;
}

/* ── Mobile & Tablet Responsive ─────────────────────────────────────── */

/* Prevent horizontal scroll from wide blobs at all sizes */
/* ── 1. Shrink decorative blobs at tablet ── */
@media (max-width: 1024px) {
    .section-has-decor::before { width: 400px; height: 400px; left: -200px; }
    .section-has-decor::after  { width: 350px; height: 350px; right: -175px; }
    .decor-circle-left  { width: 320px; height: 320px; left: -160px; }
    .decor-circle-right { width: 300px; height: 300px; right: -150px; }
}

/* ── 2. Hide decorative blobs on mobile to eliminate empty-space bleed ── */
@media (max-width: 768px) {
    .section-has-decor::before,
    .section-has-decor::after { display: none; }
    .decor-circle-left,
    .decor-circle-right { display: none; }
}

/* ── 3. Section padding — reduced on mobile ── */
@media (max-width: 768px) {
    /* Named sections with explicit padding */
    .showcase,
    .how-it-works,
    .testimonials,
    .industry-section,
    .security-section,
    .compare-section { padding: 4rem 0 !important; }
    .features,
    .pricing,
    .integrations { padding: 4rem 0 !important; }
    .cta-section { padding: 3rem 0 !important; }

    /* Hero */
    .hero { padding: 5rem 1.25rem 2.5rem !important; }
    .page-hero { padding: 5rem 1.25rem 3rem !important; }

    /* Container */
    .container { padding: 0 1.25rem !important; }
}

@media (max-width: 480px) {
    .showcase,
    .how-it-works,
    .testimonials,
    .industry-section,
    .security-section,
    .compare-section,
    .features,
    .pricing,
    .integrations { padding: 3rem 0 !important; }
}

/* ── 4. Section headings — reduce font size and bottom margin ── */
@media (max-width: 768px) {
    .section-head h2 { font-size: clamp(1.75rem, 6vw, 2.5rem) !important; }
    .section-head { margin-bottom: 2.5rem !important; }
}

/* ── 5. Hero — center content, fix font sizes, wrap CTAs ── */
@media (max-width: 768px) {
    .hero-content { text-align: center; }
    /* hero-h1 already handled at 768px → 2.5rem in existing block */
    .hero-cta-row { justify-content: center !important; flex-wrap: wrap; gap: 0.75rem; }
    .hero-trust { justify-content: center !important; flex-wrap: wrap; }
    .hero-badge { margin: 0 auto 1.5rem !important; display: inline-flex !important; }
    .hero-buttons { justify-content: center; }
    /* Sub-text center */
    .hero-sub { text-align: center; }
    .hero-tag { display: block; text-align: center; }
}

/* ── 6. Page hero (inner pages) — font + buttons ── */
@media (max-width: 768px) {
    .page-hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
    .page-hero p  { font-size: 1rem; }
    .page-hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
}
@media (max-width: 480px) {
    .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
}

/* ── 7. Bento grid — single column on mobile ── */
/* (640px: bc-* → span 12 already exists; this forces 1-col grid explicitly) */
@media (max-width: 640px) {
    .bento-grid { grid-template-columns: 1fr !important; }
}

/* ── 8. Pricing grid — single column ── */
/* Already covered at 768px; add 900px breakpoint for early collapse */
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr !important; max-width: 420px; margin-left: auto !important; margin-right: auto !important; }
    .pricing-featured { order: -1; }
}

/* ── 9. Feature detail — stack vertically ── */
/* Already covered at 1024px with grid-template-columns: 1fr; gap: 2rem */
/* Add flex fallback and cap max-width */
@media (max-width: 768px) {
    .feature-detail { gap: 2rem; }
    .feature-detail-content { max-width: 100% !important; }
    .feature-mockup-frame { max-width: 100% !important; width: 100%; }
}

/* ── 10. Compare section — stack columns ── */
/* .compare-wrap already goes 1-col at 1024px via existing rule */
@media (max-width: 768px) {
    .compare-wrap { gap: 2rem !important; }
    /* Individual left/right panels fill full width */
    .compare-wrap > * { max-width: 100% !important; width: 100%; }
}

/* ── 11. Stats rows ── */
@media (max-width: 768px) {
    /* about-page stats: already 2-col at 1024px and stays at 768px */
    .stats-hero-row { grid-template-columns: repeat(3, 1fr) !important; padding: 1.5rem 0 !important; }
}
@media (max-width: 480px) {
    .stats-hero-row { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 12. Steps row (How It Works) ── */
/* Already handled at 768px — steps go flex-direction column */
/* Hide connector entirely (existing rule rotates it, this hides it) */
@media (max-width: 768px) {
    .step-connector { display: none !important; }
    .step-card { max-width: 100% !important; }
}

/* ── 13. Industry pills — 2 columns on mobile ── */
@media (max-width: 768px) {
    .industry-pills-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }
    .industry-pill-card { min-width: unset; }
}
@media (max-width: 360px) {
    .industry-pills-row { grid-template-columns: 1fr !important; }
}

/* ── 14. Marquee band — reduce item size ── */
@media (max-width: 768px) {
    .marquee-track-inner { gap: 1.5rem; padding-right: 1.5rem; }
    .marquee-item { font-size: 0.65rem; }
}

/* ── 15. CTA section card — stack buttons ── */
@media (max-width: 768px) {
    .cta-card { padding: 2.5rem 1.5rem !important; text-align: center; }
    .cta-card h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .cta-buttons { flex-direction: column !important; align-items: center; width: 100%; gap: 0.75rem !important; }
    .cta-buttons .btn-dark,
    .cta-buttons .btn-ghost,
    .cta-buttons .btn-amber,
    .cta-buttons .btn-ghost-dark { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── 16. Footer ── */
/* .footer-inner already goes 1-col at 768px via existing rule */
@media (max-width: 768px) {
    .footer { padding: 3rem 1.25rem 0; }
}

/* ── 17. Owner features (showcase section) ── */
/* .owners-bento already stacks at 1024px; ensure right panel stacks at 640px (existing) */
/* Extra: if owners-showcase or owner-feature-row are used */
@media (max-width: 768px) {
    .owners-features { gap: 1.25rem; }
    .owner-feature-row { flex-direction: column !important; gap: 0.75rem; }
}

/* ── 18. Security grid (legacy layout) ── */
@media (max-width: 768px) {
    .security-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* ── 19. Glass card padding on small mobile ── */
@media (max-width: 480px) {
    .glass-card { padding: 1.25rem !important; }
    /* Exception: pricing card keeps its own padding */
    .pricing-card.glass-card { padding: 1.75rem 1.25rem !important; }
    .cta-card.glass-card { padding: 2rem 1.25rem !important; }
}

/* ── 20. FAQ ── */
@media (max-width: 768px) {
    .faq-question { font-size: 0.95rem; padding: 1rem 0; }
}

/* ── 21. Pricing notice (pricing page hero) — stack on mobile ── */
@media (max-width: 640px) {
    .pricing-notice { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
    .pricing-notice-divider { width: 100%; height: 1px; align-self: auto; }
}

/* ── 22. Hero POS wrap — tighten on mobile ── */
@media (max-width: 768px) {
    .hero-pos-wrap { padding: 2rem 0 0; }
}

/* ── 23. Comparison table — horizontal scroll on mobile ── */
@media (max-width: 640px) {
    .comparison-table { font-size: 0.78rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.55rem 0.65rem; }
}

/* ── 24. Blog grid max-width centering (already 1-col at 768px) ── */
@media (max-width: 768px) {
    .blog-grid { max-width: 480px !important; }
}

/* ── 25. Contact grid — already 1-col at 768px ── */
/* Ensure form-wrap and contact-info lose fixed padding */
@media (max-width: 768px) {
    .contact-form-wrap,
    .contact-info { padding: 1.75rem 1.25rem; }
}

/* ── 26. About / team / values ── */
/* Already covered: about-story-grid 1-col 768px, values-grid 1-col 768px, team-grid 2-col 768px → 1-col 480px */

/* ── 27. Integrations grid ── */
/* Already 3-col at 768px, 2-col at 480px */

/* ── 28. Showcase section — ensure it clips side content ── */
.showcase { overflow: hidden; }

/* ── 29. Testimonials grid already 1-col at 768px ── */
/* ── 30. Help grid already 2-col at 768px, 1-col at 480px ── */

/* ══════════════════════════════════════════════════════
   MOBILE/TABLET RESPONSIVE SUPPLEMENT — added 2026-03
   ══════════════════════════════════════════════════════ */

/* ── Issue 4: Pricing toggle — touch-friendly on mobile ── */
@media (max-width: 768px) {
    .pricing-billing-toggle { margin-bottom: 2rem; }
    .billing-toggle-btn { width: 56px; height: 32px; }
    .billing-toggle-knob { width: 26px; height: 26px; }
    .billing-toggle-btn.is-annual .billing-toggle-knob { transform: translateX(24px); }
}

/* ── Issue 5: Section padding on mobile ── */
@media (max-width: 768px) {
    section, .section { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .cta-section { padding: 2.5rem 0 !important; }
    .stats-hero { padding: 0 !important; }
    .page-hero { padding: 100px 0 3rem !important; }
}
@media (max-width: 480px) {
    section, .section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}

/* ── Issue 6: Feature detail — stack on mobile ── */
@media (max-width: 768px) {
    .feature-detail { flex-direction: column; gap: 2rem; }
    .feature-detail.reverse { flex-direction: column; }
    .feature-mockup-frame { min-height: 280px; }
}

/* ── Issue 7: Hero overflow prevention ── */
@media (max-width: 768px) {
    .hero { overflow: hidden; }
    .page-hero { overflow: hidden; }
}

/* ── Issue 8: Bento grid — 1 column on mobile ── */
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr !important; }
    .bc-2, .bc-3, .bc-4, .bc-6, .bc-8 { grid-column: span 1 !important; }
}

/* ── Issue 9: Industry pills — 2 columns on small phones ── */
@media (max-width: 480px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Issue 11: Tablet sizing (901px–1024px) ── */
@media (max-width: 1024px) and (min-width: 901px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .island-links .island-link { font-size: 0.8rem; padding: 0.3rem 0.6rem; }
}

/* ── Issue 12: Overflow prevention — decorative elements ── */
@media (max-width: 768px) {
    .section-has-decor::before,
    .section-has-decor::after { display: none; }
}
