:root {
    --bb-primary: #00d9ff;
    --bb-bg: #0f2023;
    --bb-bg-soft: #122a2f;
    --bb-text: #ffffff;
    --bb-text-muted: #96a2af;
    --bb-border: rgba(255, 255, 255, 0.1);
    --bb-glass: rgba(255, 255, 255, 0.04);
    --bb-glass-nav: rgba(15, 32, 35, 0.82);
    --bb-radius: 12px;
    --bb-shadow-neon: 0 0 22px rgba(0, 217, 255, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.bytebreak-theme {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    background: var(--bb-bg);
    color: var(--bb-text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

.bytebreak-main {
    overflow: clip;
}

.bytebreak-container {
    width: min(100%, 1520px);
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: var(--bb-glass-nav);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.bytebreak-nav-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bytebreak-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bytebreak-brand .custom-logo-link {
    display: inline-flex;
    max-width: 220px;
}

.bytebreak-brand .custom-logo {
    width: auto;
    height: 42px;
}

.bytebreak-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-primary);
    color: #fff;
    box-shadow: var(--bb-shadow-neon);
}

.bytebreak-brand-text {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.bytebreak-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bytebreak-menu-panel {
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.bytebreak-nav-links li {
    margin: 0;
}

.bytebreak-nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: #f0f3f8;
    transition: color 0.25s ease;
}

.bytebreak-nav-links a:hover,
.bytebreak-nav-links a:focus-visible {
    color: var(--bb-primary);
    outline: none;
}

.bb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.bb-btn:hover,
.bb-btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.bb-btn-primary {
    background: var(--bb-primary);
    color: #fff;
    box-shadow: var(--bb-shadow-neon);
}

.bb-btn-primary:hover,
.bb-btn-primary:focus-visible {
    background: #134951;
}

.bb-btn-small {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.bb-btn-glass {
    background: var(--bb-glass);
    border-color: var(--bb-border);
    color: #fff;
}

.bb-btn-glass:hover,
.bb-btn-glass:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.bb-hero {
    position: relative;
    padding: 136px 0 88px;
}

.bb-radial-blob {
    position: absolute;
    top: -200px;
    right: -120px;
    width: 52vw;
    height: 68vw;
    max-width: 760px;
    max-height: 760px;
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.17) 0%, rgba(0, 217, 255, 0) 70%);
    pointer-events: none;
}

.bb-radial-blob-soft {
    top: -20%;
    right: -15%;
    width: 80%;
    height: 130%;
    opacity: 0.55;
}

.bb-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
}

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

.bb-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 217, 255, 0.35);
    background: rgba(0, 217, 255, 0.1);
    color: var(--bb-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.72rem;
}

.bb-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.bb-hero p {
    margin: 24px 0 0;
    max-width: 680px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--bb-text-muted);
}

.bb-hero-cta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bb-hero-cta .bb-btn {
    padding: 14px 30px;
    font-size: 1.04rem;
}

.bb-hero-device-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-height: 600px;
}

.bb-phone-frame {
    width: min(420px, 88vw);
    aspect-ratio: 9 / 19;
    border-radius: 3rem;
    border: 8px solid #1d2730;
    background: #0b1118;
    overflow: hidden;
    position: relative;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.bb-phone-notch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: #000;
    z-index: 2;
}

.bb-image-fill {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bb-float-card {
    position: absolute;
    left: max(-42px, -4vw);
    bottom: 8%;
    width: 170px;
    padding: 14px;
    border-radius: 16px;
    background: var(--bb-glass);
    border: 1px solid var(--bb-border);
    backdrop-filter: blur(12px);
    animation: bb-float 2.4s ease-in-out infinite;
}

.bb-float-title {
    color: var(--bb-primary);
    font-weight: 700;
    font-size: 0.84rem;
    margin-bottom: 8px;
}

.bb-float-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bb-progress-track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.bb-progress-fill {
    display: block;
    width: 92%;
    height: 100%;
    background: var(--bb-primary);
}

.bb-pillars {
    padding: 80px 0;
    background: rgba(15, 32, 35, 0.6);
}

.bb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bb-glass-card {
    background: var(--bb-glass);
    border: 1px solid var(--bb-border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.bb-pillar {
    padding: 32px;
    transition: border-color 0.25s ease;
}

.bb-pillar:hover {
    border-color: rgba(0, 217, 255, 0.55);
}

.bb-icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 217, 255, 0.18);
    color: var(--bb-primary);
    transition: transform 0.25s ease;
}

.bb-pillar:hover .bb-icon-badge {
    transform: scale(1.07);
}

.bb-icon-badge .material-symbols-outlined {
    font-size: 32px;
}

.bb-pillar h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.bb-pillar p {
    margin: 0;
    color: var(--bb-text-muted);
}

.bb-features {
    padding: 84px 0;
    display: grid;
    gap: 96px;
}

.bb-feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: center;
}

.bb-feature-row-reverse .bb-media-card {
    order: 2;
}

.bb-feature-row-reverse .bb-feature-copy {
    order: 1;
}

.bb-media-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--bb-border);
    background: #081118;
}

.bb-media-card .bb-image-fill {
    transition: transform 0.7s ease;
}

.bb-media-card:hover .bb-image-fill {
    transform: scale(1.08);
}

.bb-feature-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    letter-spacing: -0.02em;
}

.bb-feature-copy p {
    margin: 0;
    color: var(--bb-text-muted);
    font-size: 1.06rem;
}

.bb-feature-copy ul {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.bb-feature-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.bb-feature-copy li .material-symbols-outlined {
    color: var(--bb-primary);
}

.bb-mini-metrics {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bb-mini-card {
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px;
}

.bb-mini-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bb-primary);
}

.bb-mini-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #8492a3;
    font-size: 0.7rem;
}

.bb-how {
    padding: 112px 0;
    position: relative;
}

.bb-center-header {
    text-align: center;
    margin-bottom: 68px;
}

.bb-center-header h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
}

.bb-center-header p {
    margin: 10px 0 0;
    color: var(--bb-text-muted);
}

.bb-step-grid-wrap {
    position: relative;
}

.bb-step-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 217, 255, 0.28);
}

.bb-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.bb-step-card {
    padding: 20px;
    background: rgba(15, 32, 35, 0.92);
    border-radius: 12px;
}

.bb-step-number {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bb-primary);
    box-shadow: var(--bb-shadow-neon);
    font-size: 1.15rem;
    font-weight: 700;
}

.bb-step-card h4 {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
}

.bb-step-card p {
    margin: 10px 0 0;
    text-align: center;
    color: var(--bb-text-muted);
    font-size: 0.96rem;
}

.bb-screens {
    padding: 84px 0;
    background: rgba(15, 32, 35, 0.42);
}

.bb-screens h2 {
    margin: 0 0 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.bb-heading-line {
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.13);
}

.bb-screen-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.bb-screen-strip::-webkit-scrollbar {
    display: none;
}

.bb-screen-item {
    flex: 0 0 300px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    border: 1px solid var(--bb-border);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.04);
    scroll-snap-align: center;
}

.bb-metrics {
    padding: 116px 0;
}

.bb-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.bb-metrics-copy h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.bb-metrics-copy p {
    color: var(--bb-text-muted);
    font-size: 1.1rem;
    margin: 22px 0 0;
}

.bb-avatar-note {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.bb-avatars {
    width: 68px;
    height: 42px;
    position: relative;
}

.bb-avatars span {
    position: absolute;
    top: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bb-bg);
}

.bb-avatars span:nth-child(1) {
    left: 0;
    background: #445365;
}

.bb-avatars span:nth-child(2) {
    left: 18px;
    background: #56667a;
}

.bb-avatars span:nth-child(3) {
    left: 36px;
    background: #7a899d;
}

.bb-avatar-note strong,
.bb-avatar-note small {
    display: block;
}

.bb-avatar-note small {
    color: #7f8ca0;
}

.bb-metrics-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bb-metric-card {
    padding: 30px 18px;
    text-align: center;
}

.bb-metric-card span {
    display: block;
    color: var(--bb-primary);
    font-size: 2.1rem;
    font-weight: 700;
}

.bb-metric-card small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #8f9bad;
    font-size: 0.72rem;
}

.bb-faq {
    padding: 112px 0;
    background: rgba(15, 32, 35, 0.42);
}

.bb-faq-wrap {
    width: min(100%, 860px);
    margin: 0 auto;
}

.bb-faq h2 {
    margin: 0 0 38px;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.bb-accordion {
    display: grid;
    gap: 12px;
}

.bb-accordion details {
    border-radius: 16px;
    overflow: hidden;
}

.bb-accordion summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-weight: 700;
}

.bb-accordion summary::-webkit-details-marker {
    display: none;
}

.bb-accordion summary .material-symbols-outlined {
    color: var(--bb-primary);
    transition: transform 0.25s ease;
}

.bb-accordion details[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}

.bb-accordion p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--bb-text-muted);
}

.bb-final-cta {
    padding: 112px 0 84px;
}

.bb-final-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 6vw, 90px);
    border-radius: 46px;
    text-align: center;
}

.bb-final-copy {
    position: relative;
    z-index: 2;
}

.bb-final-copy h2 {
    margin: 0;
    font-size: clamp(2.05rem, 5vw, 4.1rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.bb-final-copy p {
    margin: 18px auto 0;
    max-width: 760px;
    color: var(--bb-text-muted);
    font-size: 1.16rem;
}

.bb-waitlist-area {
    position: relative;
    z-index: 2;
    margin: 34px auto 0;
    max-width: 860px;
}

.bb-form-fallback {
    border-radius: 20px;
    border: 1px dashed rgba(0, 217, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.bb-form-fallback p {
    margin: 0;
    color: var(--bb-text-muted);
}

.bb-waitlist-area .wpcf7 {
    width: 100%;
}

.bb-waitlist-area .wpcf7 form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.bb-waitlist-area .wpcf7 form p {
    margin: 0;
}

.bb-waitlist-area .wpcf7 input:not([type="submit"]),
.bb-waitlist-area .wpcf7 textarea,
.bb-waitlist-area .wpcf7 select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 13px 14px;
    font-family: inherit;
}

.bb-waitlist-area .wpcf7 input:not([type="submit"]):focus,
.bb-waitlist-area .wpcf7 textarea:focus,
.bb-waitlist-area .wpcf7 select:focus {
    outline: none;
    border-color: var(--bb-primary);
    box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.7);
}

.bb-waitlist-area .wpcf7 input[type="submit"] {
    grid-column: 1 / -1;
    border: 0;
    border-radius: 12px;
    background: var(--bb-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: var(--bb-shadow-neon);
}

.bb-waitlist-area .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 8px 0 0 !important;
    border-radius: 10px;
    color: #fff;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 72px 0;
}

.bb-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 44px;
}

.bb-footer-branding {
    max-width: 360px;
}

.bb-footer-branding .bytebreak-brand {
    margin-bottom: 18px;
}

.bb-footer-branding p {
    margin: 0;
    color: #7f8ca0;
}

.bb-footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 36px;
}

.bb-footer-links-grid h5 {
    margin: 0 0 14px;
    font-size: 0.95rem;
}

.bb-footer-links-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.bb-footer-links-grid a {
    color: var(--bb-text-muted);
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.bb-footer-links-grid a:hover,
.bb-footer-links-grid a:focus-visible {
    color: var(--bb-primary);
    outline: none;
}

.bb-footer-socials {
    display: flex;
    gap: 8px;
}

.bb-footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--bb-border);
    background: var(--bb-glass);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bb-footer-socials a:hover,
.bb-footer-socials a:focus-visible {
    background: var(--bb-primary);
    color: #fff;
}

.bytebreak-fallback-page {
    padding: 130px 0 70px;
}

.bb-content-card {
    padding: 28px;
}

.bb-content-card .entry-title {
    margin-top: 0;
}

.bb-content-card .entry-content {
    color: var(--bb-text-muted);
}

@keyframes bb-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1200px) {
    .bb-hero-grid,
    .bb-feature-row,
    .bb-metrics-grid {
        grid-template-columns: 1fr;
    }

    .bb-feature-row-reverse .bb-media-card,
    .bb-feature-row-reverse .bb-feature-copy {
        order: initial;
    }

    .bb-hero-device-wrap {
        justify-content: center;
        min-height: 520px;
    }

    .bb-float-card {
        left: -10px;
    }

    .bb-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bb-step-line {
        display: none;
    }

    .bb-footer-grid {
        flex-direction: column;
    }

    .bb-footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bytebreak-container {
        padding: 0 18px;
    }

    .bytebreak-menu-toggle {
        display: inline-flex;
    }

    .bytebreak-menu-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: 18px;
        right: 18px;
        border-radius: 14px;
        border: 1px solid var(--bb-border);
        background: rgba(7, 14, 20, 0.96);
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .bytebreak-menu-panel.is-open {
        display: flex;
    }

    .bytebreak-nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bytebreak-nav-links a {
        width: 100%;
        display: block;
        padding: 4px 0;
    }

    .bytebreak-menu-panel .bb-btn {
        width: 100%;
    }

    .bb-grid-3,
    .bb-step-grid,
    .bb-metrics-cards {
        grid-template-columns: 1fr;
    }

    .bb-waitlist-area .wpcf7 form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bb-hero {
        padding-top: 120px;
    }

    .bb-hero-cta .bb-btn {
        width: 100%;
    }

    .bb-float-card {
        position: static;
        margin-top: 14px;
    }

    .bb-hero-device-wrap {
        min-height: 0;
        display: block;
    }

    .bb-phone-frame {
        width: min(100%, 390px);
        margin: 0 auto;
    }

    .bb-final-panel {
        border-radius: 28px;
    }

    .bb-footer-links-grid {
        grid-template-columns: 1fr;
    }
}
