:root {
    --bg: #0e0e0e;
    --surface: #161616;
    --surface-2: #202020;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #f39c12;
    --accent-rgb: 243, 156, 18;
    --accent-dim: rgba(243, 156, 18, 0.12);
    --accent-glow: rgba(243, 156, 18, 0.2);
    --accent-hover: #f5ab35;
    --text: #f0f0f0;
    --muted: #888;
    --radius: 14px;
    --transition: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    --bs-body-bg: #0e0e0e;
    --bs-body-color: #f0f0f0;
    --bs-link-color: #f39c12;
    --bs-link-hover-color: #f5ab35;
    --bs-border-color: rgba(255, 255, 255, 0.07);
}

body,
html {
    font-size: 14px;
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container {
    position: relative;
    z-index: 20;
}

.modal-content {
    background: #111 !important;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

.modal-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.modal-body {
    padding: 24px;
}

.modal-body > p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.65;
}

.btn-close {
    filter: invert(1) opacity(0.6);
}

.btn-close:hover {
    filter: invert(1) opacity(1);
}

.modal-backdrop {
    z-index: 1040 !important;
}

.modal-backdrop.show {
    opacity: 0.5 !important;
}

.modal-dialog {
    z-index: 1050 !important;
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 1280px;
    }
}

.pf-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.pf-card:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--accent-rgb), 0.15);
}

.pf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    filter: brightness(0.85) saturate(0.9);
}

.pf-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.6) saturate(0.8);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transition: var(--transition);
}

.pf-card:hover .pf-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.pf-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}

.pf-card:hover .pf-tag {
    opacity: 1;
    transform: translateY(0);
}

.pf-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0;
}

.pf-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0e0e0e;
    background: var(--accent);
    border: none;
    border-radius: 999px;
    padding: 7px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    transition-delay: 0.04s;
}

.pf-card:hover .pf-btn {
    opacity: 1;
    transform: translateY(0);
}

.pf-btn:hover {
    background: var(--accent-hover) !important;
    color: #0e0e0e !important;
}

.pf-btn svg {
    width: 0.7rem;
    height: 0.7rem;
}

.pf-card.hidden {
    display: none;
}

.modal-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.modal-img-item a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.modal-img-item a:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-dim);
}

.modal-img-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: var(--transition);
}

.modal-img-item a:hover img {
    filter: brightness(1);
}

.modal-img-item p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: 7px;
    margin-bottom: 0;
}

.portfolio-hero {
    background: var(--bg);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-hero .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.portfolio-hero h1 {
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: var(--text);
    line-height: 1;
    margin-bottom: 18px;
}

.portfolio-hero p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 440px;
    margin: 0 auto;
}

.filter-bar {
    background: var(--bg);
    padding: 0 0 52px;
}

.filter-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0e0e0e;
}

.portfolio-grid-section {
    background: var(--bg);
    padding-bottom: 100px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.pf-card {
    animation: fadeUp 0.5s both;
}

.pf-card:nth-child(1) { animation-delay: 0.05s; }
.pf-card:nth-child(2) { animation-delay: 0.10s; }
.pf-card:nth-child(3) { animation-delay: 0.15s; }
.pf-card:nth-child(4) { animation-delay: 0.20s; }
.pf-card:nth-child(5) { animation-delay: 0.25s; }
.pf-card:nth-child(6) { animation-delay: 0.30s; }
.pf-card:nth-child(7) { animation-delay: 0.35s; }
.pf-card:nth-child(8) { animation-delay: 0.40s; }
.pf-card:nth-child(9) { animation-delay: 0.45s; }
.pf-card:nth-child(10) { animation-delay: 0.50s; }
.pf-card:nth-child(11) { animation-delay: 0.55s; }
.pf-card:nth-child(12) { animation-delay: 0.60s; }
.pf-card:nth-child(13) { animation-delay: 0.65s; }

nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 32px;
}

.nav-brand img {
    display: block;
    transition: opacity 0.3s ease;
}

.nav-brand:hover img {
    opacity: 0.8;
}

.nav-toggler {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    padding: 7px 10px;
    font-size: 1rem;
    margin-left: auto;
    transition: var(--transition);
}

.nav-toggler:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-expand-lg .nav-toggler {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    flex: 1;
}

.nav-link-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted) !important;
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    background: #111 !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    min-width: 210px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    margin-top: 6px !important;
}

.nav-dropdown-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted) !important;
    border-radius: 8px !important;
    padding: 9px 14px !important;
    transition: var(--transition) !important;
    background: transparent !important;
}

.nav-dropdown-item:hover {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0e0e0e !important;
    background: var(--accent);
    border-radius: 999px;
    padding: 9px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    color: #0e0e0e !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(14, 14, 14, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px 24px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 16px;
    }

    .nav-link-item {
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 8px !important;
        margin-top: 4px !important;
        padding: 4px !important;
    }
}

.hero {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
    bottom: 0;
    left: 10%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-topbar span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.hero-topbar-divider {
    width: 1px;
    height: 12px;
    background: var(--border);
    display: inline-block;
}

.hero-available {
    display: flex !important;
    align-items: center;
    gap: 7px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(0.5); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 0; }
}

.hero-location svg {
    margin-right: 5px;
    width: 0.7rem;
    height: 0.7rem;
    color: var(--accent);
}

.hero-heading-wrap {
    margin-bottom: 64px;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.hero-heading-line {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7.5rem);
    line-height: 0.95;
    display: block;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero-heading-line--dim {
    color: rgba(240, 240, 240, 0.45);
}

.hero-heading-line--accent {
    color: var(--accent);
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

@media (max-width: 900px) {
    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-identity {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
    margin-top: 4px;
}

.hero-name-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.2;
}

.hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    background: var(--accent);
    color: #0e0e0e;
    border: none;
    border-radius: 999px;
    padding: 11px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--accent-hover);
    color: #0e0e0e;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.3);
}

.btn-hero-secondary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 11px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

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

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    min-width: 260px;
}

.hero-stat-card {
    background: var(--surface);
    padding: 24px 22px;
    transition: background 0.3s ease;
}

.hero-stat-card:hover {
    background: #1c1c1c;
}

.hero-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-num span {
    color: var(--accent);
    font-size: 1.3rem;
}

.hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    opacity: 0.4;
    animation: fade-up-in 1s 1.2s both;
}

.hero-scroll span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scroll-line 1.8s ease-in-out infinite;
    will-change: transform, opacity;
    transform-origin: top;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); opacity: 0; }
    20% { opacity: 1; }
    60% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; }
}

@keyframes fade-up-in {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 0.4; transform: translate(-50%, 0); }
}

@media (max-width: 576px) {
    .hero-heading-line {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .hero-stat-grid {
        min-width: 0;
        width: 100%;
    }
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.section-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.1;
}

.services-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.svc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.svc-card:hover {
    border-color: rgba(var(--accent-rgb), 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.svc-card:hover .svc-icon {
    background: var(--accent);
}

.svc-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--accent);
    transition: var(--transition);
}

.svc-card:hover .svc-icon svg {
    color: #0e0e0e;
}

.svc-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.svc-link:hover {
    gap: 10px;
    color: var(--accent-hover);
}

.svc-link svg {
    width: 0.7rem;
    height: 0.7rem;
}

.brands-section {
    background: var(--surface);
    padding: 100px 0 0;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.brands-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.brands-header-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 320px;
    line-height: 1.7;
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .brands-header-desc {
        text-align: left;
        max-width: 100%;
    }
}

.bs-wrap {
    position: relative;
    overflow: hidden;
    padding: 56px 0 0;
}

.bs-orb-a,
.bs-orb-b {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    transition: background 0.8s ease;
    z-index: 0;
}

.bs-wrap .container,
.bs-wrap .bs-footer {
    position: relative;
    z-index: 1;
}

.bs-orb-a {
    width: 560px;
    height: 560px;
    top: -180px;
    right: -120px;
    opacity: 0.18;
}

.bs-orb-b {
    width: 340px;
    height: 340px;
    bottom: 80px;
    left: -100px;
    opacity: 0.1;
}

.bs-frame {
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.bs-chrome {
    height: 34px;
    background: #232323;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    flex-shrink: 0;
}

.bs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bs-url {
    margin-left: 10px;
    flex: 1;
    max-width: 260px;
    height: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    padding: 0 9px;
    overflow: hidden;
    white-space: nowrap;
    transition: color 0.4s;
}

.bs-screen {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
}

.bs-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: opacity 0.5s ease 0.05s;
}

.bs-shot-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s;
}

.bs-shot-fallback img {
    max-height: 72px;
    max-width: 60%;
    object-fit: contain;
    opacity: 0.55;
    filter: brightness(0.8);
}


.bs-logo-wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.bs-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 999px;
    margin-bottom: 14px;
    transition: color 0.5s, background 0.5s, border-color 0.5s;
}

.bs-name {
    display: flex;
    align-items: center;
    min-height: 52px;
    margin: 0 0 18px;
}

.bs-name img {
    height: 48px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}

.bs-name svg {
    height: 48px;
    width: auto;
}

.bs-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 28px;
    max-width: 400px;
}

.bs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s, color 0.4s;
}

.bs-cta:hover { gap: 14px; }
.bs-cta svg { width: 0.72rem; height: 0.72rem; }

.bs-footer {
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0 72px;
}

.bs-nav-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bs-arrow {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.68rem;
}

.bs-arrow:hover {
    border-color: rgba(var(--accent-rgb), 0.4);
    color: var(--accent);
    background: var(--accent-dim);
}

.bs-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.bs-strip::-webkit-scrollbar { display: none; }

.bs-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
}

.bs-item:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.bs-item.is-active {
    color: var(--ic, var(--accent));
    border-color: color-mix(in srgb, var(--ic, var(--accent)) 40%, transparent);
    background: color-mix(in srgb, var(--ic, var(--accent)) 10%, transparent);
}

.bs-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    opacity: 0.7;
}

.bs-item.is-active .bs-item-dot { opacity: 1; }

@media (max-width: 991px) {
    .bs-name img, .bs-name svg { height: 38px; }

    .bs-orb-a {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -60px;
    }
}

.reviews-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.reviews-rating-badge {
    text-align: right;
    flex-shrink: 0;
}

.reviews-stars-large {
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 6px;
}

.reviews-badge-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card--featured {
        grid-column: span 1;
    }
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    font-family: 'Syne', sans-serif;
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.06;
    position: absolute;
    top: -20px;
    left: 16px;
    line-height: 1;
    pointer-events: none;
    transition: opacity var(--transition);
}

.review-card:hover {
    border-color: rgba(var(--accent-rgb), 0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.review-card:hover::before {
    opacity: 0.12;
}

.review-card--featured {
    border-color: rgba(var(--accent-rgb), 0.15);
}

.review-card--featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.review-card-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.review-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #bbb;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.review-card--featured .review-text {
    font-size: 1.02rem;
    color: var(--text);
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar-icon svg {
    color: var(--accent);
    width: 0.9rem;
    height: 0.9rem;
}

.review-author {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.2;
}

.review-platform {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}

.review-stars {
    color: var(--accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.fade-up {
    animation: fadeUp 0.7s both;
}

.fade-up-1 { animation-delay: 0.10s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }
.fade-up-5 { animation-delay: 0.58s; }

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-link {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 1;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: #888;
    margin: 0;
    letter-spacing: 0.03em;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 32px 0;
    }
}

.legal-body {
    background: var(--bg);
    padding: 60px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 991px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        display: none;
    }
}

.legal-toc {
    position: sticky;
    top: 100px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.legal-toc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.legal-toc ol li {
    counter-increment: toc-counter;
    margin-bottom: 8px;
}

.legal-toc ol li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 8px;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.legal-toc ol li a::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-size: 0.65rem;
    color: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
}

.legal-toc ol li a:hover {
    color: var(--text);
}

.legal-content h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 52px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: #aaa;
    line-height: 1.8;
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.legal-content ul li:last-child {
    border-bottom: none;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-dim);
    transition: border-color 0.2s ease;
}

.legal-content a:hover {
    border-color: var(--accent);
}

.legal-content strong {
    color: var(--text);
    font-weight: 500;
}

.legal-updated {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-updated svg {
    color: var(--accent);
    width: 0.75rem;
    height: 0.75rem;
}

.legal-content h2 .part-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--accent-dim);
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 8px;
}
