/* ─── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #322F30;
    color: #fff;
    overflow-x: hidden;
}

/* ─── Brand tokens ─────────────────────────────────────────── */
:root {
    --bb-orange: #F38020;
    --bb-dark: #322F30;
    --bb-gray: #495467;
}

/* ─── Layout container ─────────────────────────────────────── */
.bb-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .bb-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

/* ─── Section variants ─────────────────────────────────────── */
.section-dark {
    background: #322F30;
}

.section-darker {
    background: #282527;
}

.section-gray {
    background: rgba(73,84,103,0.15);
}

/* ─── Navbar ───────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    #navbar.scrolled {
        background: rgba(50,47,48,0.97);
        box-shadow: 0 2px 24px rgba(0,0,0,0.4);
        backdrop-filter: blur(12px);
    }

    #navbar .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #navbar .nav-links {
        display: none;
        align-items: center;
        gap: 2rem;
        margin-left: 2rem;
    }

@media (min-width: 768px) {
    #navbar .nav-links {
        display: flex;
    }

    #menu-toggle {
        display: none;
    }
}

.nav-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-links a:hover {
        color: #fff;
    }

#menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem;
}

#mobile-menu {
    display: none;
    background: rgba(50,47,48,0.98);
    backdrop-filter: blur(12px);
    padding-bottom: 1rem;
    margin-top: 0.5rem;
}

    #mobile-menu .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    #mobile-menu a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-weight: 500;
        padding: 0.25rem 0;
        transition: color 0.2s;
    }

        #mobile-menu a:hover {
            color: #fff;
        }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    background: var(--bb-orange);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-align: center;
}

    .btn-primary:hover {
        background: #e07010;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(243,128,32,0.4);
    }

.btn-outline {
    background: transparent;
    color: var(--bb-orange);
    font-weight: 700;
    border: 2px solid var(--bb-orange);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
    text-align: center;
}

    .btn-outline:hover {
        background: var(--bb-orange);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(243,128,32,0.3);
    }

@media (min-width: 600px) {
    .apply-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
    }
}

    /* ─── Badge ────────────────────────────────────────────────── */
    .badge-orange {
        background: rgba(243,128,32,0.15);
        color: var(--bb-orange);
        border: 1px solid rgba(243,128,32,0.3);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .calc-wrap {
        display: grid;
        gap: 3rem;
        align-items: start;
    }

    @media (min-width: 1024px) {
        .calc-wrap {
            grid-template-columns: 1fr 1fr;
        }
    }

    .calc-box {
        background: rgba(73,84,103,0.15);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 1rem;
        padding: 2rem;
    }

    /* ─── Hero ─────────────────────────────────────────────────── */
    #hero {
        background: linear-gradient(135deg, #322F30 0%, #495467 50%, #322F30 100%);
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 80px;
        background-image: linear-gradient(135deg, #322F30 0%, #495467 50%, #322F30 100%), linear-gradient(rgba(243,128,32,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(243,128,32,0.05) 1px, transparent 1px);
        background-size: 100% 100%, 60px 60px, 60px 60px;
    }

        #hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(243,128,32,0.15) 0%, transparent 60%);
            animation: pulse-bg 6s ease-in-out infinite alternate;
            pointer-events: none;
        }

    @keyframes pulse-bg {
        0% {
            transform: translate(0,0) scale(1);
        }

        100% {
            transform: translate(10%,5%) scale(1.1);
        }
    }

    #hero.hero-non100 {
        min-height: 10vh;
    }

    .hero-grid {
        display: grid;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    @media (min-width: 1024px) {
        .hero-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .hero-badge-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--bb-orange);
        display: inline-block;
        position: relative;
        animation: ping-dot 1.5s infinite;
    }

    @keyframes ping-dot {
        0% {
            box-shadow: 0 0 0 0 rgba(243,128,32,0.6);
        }

        70% {
            box-shadow: 0 0 0 8px rgba(243,128,32,0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(243,128,32,0);
        }
    }

    .hero-title {
        font-size: clamp(2.8rem, 7vw, 4.5rem);
        font-weight: 900;
        line-height: 1.05;
        margin-bottom: 2rem;
    }

    .hero-sub {
        font-size: 1.125rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 2.5rem;
        line-height: 1.7;
        max-width: 36rem;
        margin: auto;
    }

    .hero-cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-checks {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-check {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: rgba(255,255,255,0.6);
    }

    #cta {
        padding-bottom: 20px;
    }

    .cta-section {
        margin-top: 30px;
    }



    /* ─── Phone deck (stacked screenshots) ─────────────────────── */
    .phone-deck-wrap {
        position: relative;
        z-index: 30;
        margin-top: 68px;
        display: flex;
        justify-content: flex-end;
        cursor: pointer;
        overflow: visible;
    }

    .phone-deck {
        position: relative;
        width: 224px;
        height: 560px;
        flex-shrink: 0;
        overflow: visible;
    }

    .phone-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 224px;
    }

    .phone-frame-new {
        position: relative;
        border-radius: 2.5rem;
        background: #1a1818;
        border: 5px solid #3a3738;
        overflow: hidden;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 0 1px rgba(0,0,0,0.8);
    }

    .phone-btn-r {
        position: absolute;
        right: -6px;
        top: 80px;
        width: 3px;
        height: 36px;
        background: #555;
        border-radius: 9999px;
        z-index: 20;
    }

    .phone-btn-l1 {
        position: absolute;
        left: -6px;
        top: 64px;
        width: 3px;
        height: 24px;
        background: #555;
        border-radius: 9999px;
        z-index: 20;
    }

    .phone-btn-l2 {
        position: absolute;
        left: -6px;
        top: 112px;
        width: 3px;
        height: 40px;
        background: #555;
        border-radius: 9999px;
        z-index: 20;
    }

    .phone-island {
        background: #000;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding: 10px 0 6px;
    }

    .phone-island-pill {
        width: 80px;
        height: 20px;
        background: #000;
        border-radius: 9999px;
        border: 1px solid #333;
    }

    .phone-shot {
        display: block;
        width: 100%;
        margin-top: -28px;
    }

    .phone-homebar {
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 8px 0;
    }

    .phone-homepill {
        width: 80px;
        height: 4px;
        background: rgba(255,255,255,0.4);
        border-radius: 9999px;
    }

    .phone-item-mask {
        position: absolute;
        inset: 0;
        background: rgba(20,18,18,0.82);
        transition: opacity 0.35s ease;
        pointer-events: none;
        z-index: 30;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(20,18,18,0.75);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 10;
    }

    /* ─── Ticker ───────────────────────────────────────────────── */
    .ticker-wrap {
        overflow: hidden;
        background: var(--bb-orange);
        padding: 0.85rem 0;
    }

    .ticker-content {
        display: flex;
        white-space: nowrap;
        animation: ticker 30s linear infinite;
    }

        .ticker-content span {
            padding: 0 2.5rem;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fff;
        }

    @keyframes ticker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* ─── Section headings ─────────────────────────────────────── */
    .section-header {
        text-align: center;
        margin-bottom: 6rem;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .section-sub {
        color: rgba(255,255,255,0.6);
        font-size: 1.125rem;
        max-width: 40rem;
        margin: 0 auto;
        line-height: 1.7;
    }

    .accent {
        color: var(--bb-orange);
    }

    /* ─── Cards ────────────────────────────────────────────────── */
    .feature-card {
        background: rgba(73,84,103,0.2);
        border: 1px solid rgba(243,128,32,0.15);
        border-radius: 1rem;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

        .feature-card:hover {
            background: rgba(73,84,103,0.4);
            border-color: rgba(243,128,32,0.5);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.3);
        }

    .step-card {
        background: rgba(73,84,103,0.15);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 1rem;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

        .step-card:hover {
            border-color: rgba(243,128,32,0.4);
            background: rgba(73,84,103,0.25);
        }

    .step-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 625px) {
        .step-cards {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* ─── Icon circle ──────────────────────────────────────────── */
    .icon-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(243,128,32,0.12);
        border: 1px solid rgba(243,128,32,0.25);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* ─── Step number pill ─────────────────────────────────────── */
    .step-number {
        width: 48px;
        height: 48px;
        background: var(--bb-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
        flex-shrink: 0;
        color: #fff;
    }

    /* ─── Connector line ───────────────────────────────────────── */
    .connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--bb-orange), transparent);
        margin: 0.25rem auto;
    }

    /* ─── Orange line divider ──────────────────────────────────── */
    .orange-line {
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--bb-orange), transparent);
    }

    /* ─── Grid helpers ─────────────────────────────────────────── */
    .grid {
        display: grid;
    }

    .cards-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .cards-3 {
            grid-template-columns: repeat(3,1fr);
        }
    }

    .cards-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .cards-4 {
            grid-template-columns: repeat(2,1fr);
        }
    }

    @media (min-width: 1024px) {
        .cards-4 {
            grid-template-columns: repeat(4,1fr);
        }
    }

    /* ─── FAQ ──────────────────────────────────────────────────── */
    .faq-item {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
        text-align: left;
        padding: 1.75rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .faq-question-text {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
    }

    .faq-chevron {
        width: 20px;
        height: 20px;
        color: var(--bb-orange);
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        display: none;
        color: rgba(255,255,255,0.7);
        font-size: 0.9375rem;
        line-height: 1.75;
        padding-bottom: 1.75rem;
        padding-left: 1.5rem;
    }

    .faq-item.open .faq-answer {
        display: block;
    }

    .faq-item.open .faq-chevron {
        transform: rotate(180deg);
    }

    /* ─── Form inputs ──────────────────────────────────────────── */
    input[type="email"], input[type="text"], textarea {
        background: rgba(73,84,103,0.3);
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff;
        outline: none;
        transition: border-color 0.2s;
        padding: 0.85rem 1.1rem;
        border-radius: 0.75rem;
        font-family: inherit;
        font-size: 0.875rem;
        width: 100%;
    }

        input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
            border-color: var(--bb-orange);
        }

        input::placeholder, textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

    textarea {
        resize: none;
    }

    label {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.5);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: block;
        margin-bottom: 0.5rem;
    }

    /* ─── Scroll reveal ────────────────────────────────────────── */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

    /* ─── Footer ───────────────────────────────────────────────── */
    footer {
        background: #1a1818;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 6rem 0 3rem;
    }

    .footer-grid {
        display: grid;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .footer-grid {
            grid-template-columns: 2fr 1fr 1fr;
        }
    }

    .footer-links-heading {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.3);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

            .footer-links a:hover {
                color: #fff;
            }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.06);
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
        }
    }

    .footer-copy {
        color: rgba(255,255,255,0.25);
        font-size: 0.75rem;
    }

    .footer-legal {
        display: flex;
        gap: 1.5rem;
    }

        .footer-legal a {
            color: rgba(255,255,255,0.25);
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-legal a:hover {
                color: rgba(255,255,255,0.6);
            }

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

        .footer-social a {
            color: rgba(255,255,255,0.3);
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-social a:hover {
                color: var(--bb-orange);
            }

    /* ─── Utility helpers ──────────────────────────────────────── */
    .flex {
        display: flex;
    }

    .inline-flex {
        display: inline-flex;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    .flex-1 {
        flex: 1;
    }

    .flex-shrink-0 {
        flex-shrink: 0;
    }

    .items-center {
        align-items: center;
    }

    .items-start {
        align-items: flex-start;
    }

    .justify-center {
        justify-content: center;
    }

    .text-center {
        text-align: center;
    }

    .leading-relaxed {
        line-height: 1.7;
    }

    .font-black {
        font-weight: 900;
    }

    .font-bold {
        font-weight: 700;
    }

    .font-semibold {
        font-weight: 600;
    }

    .w-full {
        width: 100%;
    }

    .relative {
        position: relative;
    }

    .absolute {
        position: absolute;
    }

    .line-through {
        text-decoration: line-through;
    }

    .gap-2 {
        gap: 0.5rem;
    }

    .gap-3 {
        gap: 0.75rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    .gap-6 {
        gap: 1.5rem;
    }

    .gap-20 {
        gap: 5rem;
    }

    .mb-2 {
        margin-bottom: 0.5rem;
    }

    .mb-4 {
        margin-bottom: 1rem;
    }

    .mb-5 {
        margin-bottom: 1.25rem;
    }

    .mb-6 {
        margin-bottom: 1.5rem;
    }

    .mb-8 {
        margin-bottom: 2rem;
    }

    .mb-10 {
        margin-bottom: 2.5rem;
    }

    .mb-12 {
        margin-bottom: 3rem;
    }

    .mb-16 {
        margin-bottom: 4rem;
    }

    .mt-1 {
        margin-top: 0.25rem;
    }

    .mt-4 {
        margin-top: 1rem;
    }

    .mt-6 {
        margin-top: 1.5rem;
    }

    .mt-16 {
        margin-top: 4rem;
    }

    .mt-20 {
        margin-top: 5rem;
    }

    .py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .pt-32 {
        padding-top: 8rem;
    }

    .pb-16 {
        padding-bottom: 4rem;
    }

    .p-5 {
        padding: 1.25rem;
    }

    .text-xs {
        font-size: 0.75rem;
    }

    .text-sm {
        font-size: 0.875rem;
    }

    .text-lg {
        font-size: 1.125rem;
    }

    .text-xl {
        font-size: 1.25rem;
    }

    .text-2xl {
        font-size: 1.5rem;
    }

    .rounded-xl {
        border-radius: 0.75rem;
    }

    .rounded-full {
        border-radius: 999px;
    }

    .space-y-3 > * + * {
        margin-top: 0.75rem;
    }

    .space-y-4 > * + * {
        margin-top: 1rem;
    }

    .space-y-6 > * + * {
        margin-top: 1.5rem;
    }

    .space-y-8 > * + * {
        margin-top: 2rem;
    }

    .module-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .module-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .module-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .module-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1.25rem;
        padding: 1.75rem;
        transition: border-color 0.2s ease, background 0.2s ease;
    }

        .module-card:hover {
            border-color: rgba(243,128,32,0.3);
            background: rgba(243,128,32,0.05);
        }

    .module-icon {
        width: 50px;
        height: 50px;
        border-radius: 0.75rem;
        background: rgba(243,128,32,0.12);
        border: 1px solid rgba(243,128,32,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 1rem;
    }

    .module-name {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .module-tagline {
        font-size: 0.75rem;
        color: var(--bb-orange);
        font-weight: 600;
        margin-bottom: 0.75rem;
        opacity: 0.85;
    }

    .module-desc {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.65;
    }

    .badge-red {
        background: rgba(220,50,50,0.12);
        color: #e05555;
        border: 1px solid rgba(220,50,50,0.25);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .philosophy-page #navbar.scrolled {
        background: rgba(26,22,24,0.97);
        box-shadow: 0 2px 24px rgba(0,0,0,0.4);
        backdrop-filter: blur(12px);
    }

    .philosophy-page #mobile-menu,
    .philosophy-page footer {
        background: #1a1618;
    }

    .philosophy-page #hero {
        padding-top: 140px;
        padding-bottom: 100px;
        min-height: auto;
        display: block;
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243,128,32,0.1) 0%, transparent 70%);
        background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243,128,32,0.1) 0%, transparent 70%);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        position: relative;
        overflow: hidden;
    }

        .philosophy-page #hero::before {
            content: none;
        }

        .philosophy-page #hero .grid-lines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(243,128,32,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(243,128,32,0.04) 1px, transparent 1px);
            background-size: 80px 80px;
        }

        .philosophy-page #hero .content {
            position: relative;
        }

    .philosophy-page .hero-title {
        font-size: clamp(2.8rem, 7vw, 5rem);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 2rem;
        max-width: 16ch;
    }

        .philosophy-page .hero-title .accent {
            color: var(--bb-orange);
        }

    .philosophy-page .hero-sub {
        font-size: clamp(1.05rem, 2vw, 1.25rem);
        color: rgba(255,255,255,0.6);
        max-width: 52rem;
        line-height: 1.8;
        margin-bottom: 3rem;
        margin-left: 0px;
    }

    .philosophy-page .hero-parts {
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .philosophy-page .hero-part {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .philosophy-page .hero-part-num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(243,128,32,0.15);
        border: 1px solid rgba(243,128,32,0.3);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--bb-orange);
        font-size: 0.7rem;
        font-weight: 800;
        flex-shrink: 0;
    }

    .philosophy-page .problems-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 1.5rem;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .philosophy-page .problems-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .philosophy-page .problem-card {
        padding: 2.5rem;
        background: #1a1618;
        transition: background 0.2s;
    }

        .philosophy-page .problem-card:hover {
            background: rgba(243,128,32,0.04);
        }

    .philosophy-page .problem-icon {
        width: 52px;
        height: 52px;
        border-radius: 0.875rem;
        flex-shrink: 0;
        background: rgba(220,50,50,0.08);
        border: 1px solid rgba(220,50,50,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .philosophy-page .problem-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: rgba(220,80,80,0.7);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.4rem;
    }

    .philosophy-page .problem-headline {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .philosophy-page .problem-body {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.75;
    }

    .philosophy-page blockquote {
        border-left: 4px solid var(--bb-orange);
        padding-left: 2.5rem;
        max-width: 52rem;
    }

        .philosophy-page blockquote p {
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.45;
            margin-bottom: 1.25rem;
        }

        .philosophy-page blockquote cite {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.35);
            font-style: normal;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

    .philosophy-page #pivot {
        padding: 100px 0;
        background: linear-gradient(180deg, rgba(243,128,32,0.06) 0%, transparent 100%);
        border-top: 1px solid rgba(243,128,32,0.15);
        border-bottom: 1px solid rgba(243,128,32,0.15);
    }

        .philosophy-page #pivot h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin: 0 auto 2rem;
            max-width: 18ch;
            text-align: center;
        }

        .philosophy-page #pivot .sub {
            font-size: clamp(1.05rem, 2vw, 1.2rem);
            color: rgba(255,255,255,0.6);
            max-width: 48rem;
            margin: 0 auto 3rem;
            line-height: 1.85;
            text-align: center;
        }

    .philosophy-page .pivot-accent {
        color: var(--bb-orange);
        font-style: normal;
    }

    .philosophy-page .compare-grid {
        display: grid;
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto;
    }

    @media (min-width: 640px) {
        .philosophy-page .compare-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .philosophy-page .compare-col {
        border-radius: 1.25rem;
        padding: 2rem;
        text-align: left;
    }

        .philosophy-page .compare-col.them {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
        }

        .philosophy-page .compare-col.us {
            background: rgba(243,128,32,0.08);
            border: 1px solid rgba(243,128,32,0.3);
        }

    .philosophy-page .compare-label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }

    .philosophy-page .compare-col.them .compare-label {
        color: rgba(255,255,255,0.3);
    }

    .philosophy-page .compare-col.us .compare-label {
        color: var(--bb-orange);
    }

    .philosophy-page .compare-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

        .philosophy-page .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

    .philosophy-page .compare-col.them .compare-list li {
        color: rgba(255,255,255,0.4);
    }

    .philosophy-page .compare-col.us .compare-list li {
        color: rgba(255,255,255,0.75);
    }

    .philosophy-page .ci {
        flex-shrink: 0;
        font-size: 0.75rem;
        margin-top: 0.1rem;
    }

    .philosophy-page .compare-col.them .ci {
        color: rgba(255,255,255,0.2);
    }

    .philosophy-page .compare-col.us .ci {
        color: var(--bb-orange);
    }

    .philosophy-page .solution-grid {
        display: grid;
        gap: 1.5rem;
        margin-bottom: 5rem;
    }

    @media (min-width: 768px) {
        .philosophy-page .solution-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .philosophy-page .solution-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .philosophy-page .solution-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1.25rem;
        padding: 2rem;
        transition: border-color 0.2s, background 0.2s;
    }

        .philosophy-page .solution-card:hover {
            border-color: rgba(243,128,32,0.3);
            background: rgba(243,128,32,0.05);
        }

    .philosophy-page .solution-check {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(243,128,32,0.15);
        border: 1px solid rgba(243,128,32,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .philosophy-page .solution-headline {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .philosophy-page .solution-body {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.75;
    }

    .philosophy-page .closing-box {
        background: linear-gradient(135deg, rgba(243,128,32,0.1) 0%, rgba(243,128,32,0.04) 100%);
        border: 1px solid rgba(243,128,32,0.2);
        border-radius: 1.5rem;
        padding: clamp(2rem, 5vw, 4rem);
        text-align: center;
    }

        .philosophy-page .closing-box h2 {
            font-size: clamp(1.6rem, 4vw, 2.5rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .philosophy-page .closing-box p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            max-width: 44rem;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
        }

    .operator-page #hero {
        padding-top: 140px;
        padding-bottom: 100px;
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243,128,32,0.1) 0%, transparent 70%);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        position: relative;
        overflow: hidden;
    }

    .operator-page .grid-lines {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(243,128,32,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(243,128,32,0.04) 1px, transparent 1px);
        background-size: 80px 80px;
    }

    .operator-page .hero-title {
        font-size: clamp(2.8rem, 7vw, 5rem);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 2rem;
        max-width: 14ch;
    }

    .operator-page .accent {
        color: var(--bb-orange);
    }

    .operator-page .section-border {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .operator-page .compare-half {
        padding: 2rem;
    }

        .operator-page .compare-half.them {
            background: rgba(255,255,255,0.02);
        }

        .operator-page .compare-half.us {
            background: rgba(243,128,32,0.07);
        }

    .operator-page .compare-label {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }

    .operator-page .compare-half.them .compare-label {
        color: rgba(255,255,255,0.3);
    }

    .operator-page .compare-half.us .compare-label {
        color: var(--bb-orange);
    }

    .operator-page .compare-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

        .operator-page .compare-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.85rem;
            line-height: 1.5;
        }

    .operator-page .compare-half.them .compare-list li {
        color: rgba(255,255,255,0.35);
    }

    .operator-page .compare-half.us .compare-list li {
        color: rgba(255,255,255,0.75);
    }

    .operator-page .ci-them {
        color: rgba(255,255,255,0.15);
        flex-shrink: 0;
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }

    .operator-page .ci-us {
        color: var(--bb-orange);
        flex-shrink: 0;
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }

    .operator-page .checklist-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 0.875rem;
        padding: 1.25rem 1.5rem;
        transition: border-color 0.2s, background 0.2s;
        margin-bottom: 0.875rem;
    }

        .operator-page .checklist-item:hover {
            border-color: rgba(243,128,32,0.25);
            background: rgba(243,128,32,0.04);
        }

    .operator-page .check-circle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(243,128,32,0.15);
        border: 1px solid rgba(243,128,32,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .operator-page .trait-grid {
        display: grid;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .operator-page .trait-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .operator-page .trait-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .operator-page .trait-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1.25rem;
        padding: 1.75rem;
        transition: border-color 0.2s, background 0.2s;
    }

        .operator-page .trait-card:hover {
            border-color: rgba(243,128,32,0.3);
            background: rgba(243,128,32,0.05);
        }

    .operator-page .trait-icon {
        width: 50px;
        height: 50px;
        border-radius: 0.75rem;
        background: rgba(243,128,32,0.12);
        border: 1px solid rgba(243,128,32,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }

    .operator-page .trait-headline {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .operator-page .trait-body {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.7;
    }

    .operator-page .budget-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1rem;
        padding: 1.25rem 1.5rem;
        margin-bottom: 1rem;
    }

    .operator-page .budget-item {
        font-weight: 700;
        color: #fff;
        font-size: 0.9375rem;
        margin-bottom: 0.3rem;
    }

    .operator-page .budget-detail {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.45);
        line-height: 1.6;
    }

    .operator-page .timeline-grid {
        display: grid;
        gap: 1.5rem;
    }

    @media (min-width: 640px) {
        .operator-page .timeline-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .operator-page .timeline-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .operator-page .timeline-card {
        background: rgba(255,255,255,0.03);
        border-radius: 1.25rem;
        padding: 1.75rem;
        position: relative;
    }

        .operator-page .timeline-card.hot {
            border: 1px solid rgba(243,128,32,0.25);
        }

        .operator-page .timeline-card.cool {
            border: 1px solid rgba(255,255,255,0.07);
        }

        .operator-page .timeline-card.green {
            border: 1px solid rgba(100,200,100,0.15);
        }

    .operator-page .timeline-badge {
        position: absolute;
        top: 1.75rem;
        right: 1.75rem;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.3rem 0.6rem;
        border-radius: 999px;
    }

    .operator-page .badge-hot {
        background: rgba(243,128,32,0.15);
        color: var(--bb-orange);
    }

    .operator-page .badge-med {
        background: rgba(255,255,255,0.07);
        color: rgba(255,255,255,0.4);
    }

    .operator-page .badge-green {
        background: rgba(100,200,100,0.12);
        color: #7ec87e;
    }

    .operator-page .timeline-period {
        font-size: 0.65rem;
        font-weight: 700;
        color: rgba(255,255,255,0.3);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.4rem;
    }

    .operator-page .timeline-phase {
        font-size: 1.1rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 0.875rem;
    }

    .operator-page .timeline-focus {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.7;
    }

    .operator-page .scale-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: rgba(255,255,255,0.05);
        border-radius: 0.875rem;
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .operator-page .scale-dot {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(243,128,32,0.2);
        border: 1px solid rgba(243,128,32,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .operator-page .scale-label {
        font-weight: 700;
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .operator-page .scale-sub {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.45);
        line-height: 1.6;
    }

    .operator-page .two-col {
        display: grid;
        gap: 4rem;
        align-items: start;
    }

    @media (min-width: 1024px) {
        .operator-page .two-col {
            grid-template-columns: 1fr 1fr;
        }
    }

    .operator-page .compare-wrap {
        display: grid;
        gap: 1.5px;
        background: rgba(255,255,255,0.08);
        border-radius: 1.25rem;
        overflow: hidden;
    }

    @media (min-width: 640px) {
        .operator-page .compare-wrap {
            grid-template-columns: 1fr 1fr;
        }
    }

    .groups-page #hero {
        padding-top: 140px;
        padding-bottom: 100px;
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(243,128,32,0.1) 0%, transparent 70%);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        position: relative;
        overflow: hidden;
    }

    .groups-page .grid-lines {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(243,128,32,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(243,128,32,0.04) 1px, transparent 1px);
        background-size: 80px 80px;
    }

    .groups-page .hero-title {
        font-size: clamp(2.5rem, 6.5vw, 4.6rem);
        font-weight: 900;
        line-height: 1.05;
        margin-bottom: 2rem;
        max-width: 18ch;
    }

    .groups-page .accent {
        color: var(--bb-orange);
    }

    .groups-page .section-border {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .groups-page .two-col {
        display: grid;
        gap: 4rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .groups-page .two-col {
            grid-template-columns: 1fr 1fr;
        }
    }

    .groups-page .tag-pill {
        font-size: 0.875rem;
        font-weight: 600;
        color: rgba(255,255,255,0.75);
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 999px;
        padding: 0.6rem 1.25rem;
        display: inline-block;
    }

    .groups-page .brand-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1rem;
        padding: 1.25rem 1.5rem;
        margin-bottom: 1rem;
    }

    .groups-page .brand-dot {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(243,128,32,0.15);
        border: 1px solid rgba(243,128,32,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .groups-page .brand-label {
        font-weight: 700;
        color: #fff;
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }

    .groups-page .brand-body {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.45);
        line-height: 1.6;
    }

    .groups-page .module-grid {
        display: grid;
        gap: 1.25rem;
    }

    @media (min-width: 640px) {
        .groups-page .module-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (min-width: 1024px) {
        .groups-page .module-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }

    .groups-page .module-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 1.25rem;
        padding: 1.75rem;
        transition: border-color 0.2s, background 0.2s;
    }

        .groups-page .module-card:hover {
            border-color: rgba(243,128,32,0.3);
            background: rgba(243,128,32,0.05);
        }

    .groups-page .module-icon {
        width: 44px;
        height: 44px;
        border-radius: 0.85rem;
        background: rgba(243,128,32,0.12);
        border: 1px solid rgba(243,128,32,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.1rem;
    }

    .groups-page .module-label {
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.6rem;
    }

    .groups-page .module-body {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        line-height: 1.75;
    }

    .groups-page .example-box {
        background: rgba(255,255,255,0.05);
        border-radius: 1.25rem;
        padding: 2rem;
    }

    .groups-page .calc-wrap {
        display: grid;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .groups-page .calc-wrap {
            grid-template-columns: 1fr 1fr;
        }
    }

    .groups-page input[type="email"],
    .groups-page input[type="text"],
    .groups-page textarea {
        background: rgba(73,84,103,0.3);
        border: 1px solid rgba(255,255,255,0.12);
        color: #fff;
        outline: none;
        transition: border-color 0.2s;
        padding: 0.85rem 1.1rem;
        border-radius: 0.75rem;
        width: 100%;
        font-family: inherit;
        font-size: 0.875rem;
    }

        .groups-page input[type="email"]:focus,
        .groups-page input[type="text"]:focus,
        .groups-page textarea:focus {
            border-color: var(--bb-orange);
        }

        .groups-page input::placeholder,
        .groups-page textarea::placeholder {
            color: rgba(255,255,255,0.35);
        }

    .groups-page textarea {
        resize: none;
    }

    .groups-page label {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.5);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        display: block;
        margin-bottom: 0.5rem;
    }

    .groups-page .space-y-4 > * + * {
        margin-top: 1rem;
    }

    .groups-page .form-grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
