/* Ntono Single Project (Case Study V2) Styles */

/* 1. Global Page Styles & Container Reset */
.ntono-single-project {
    background-color: var(--ntono-bg-dark, #0b090a);
    color: var(--ntono-text-light, #f1f2f6);
    --cs-sidebar-width: 320px;
    --cs-spacing-lg: 5rem;
    --cs-spacing-md: 3rem;
    overflow-x: hidden;
}

/* Fix Global Header Overlap */
.ntono-single-project .ntono-global-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* very subtle */
    backdrop-filter: none;
}

.ntono-single-project .ntono-global-header.scrolled {
    background: rgba(11, 9, 10, 0.85);
    backdrop-filter: blur(12px);
}

/* 2. Hero Section */
.ntono-cs-hero {
    position: relative;
    padding-top: calc(80px + 3rem);
    padding-bottom: 3rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .ntono-cs-hero {
        padding-top: calc(80px + 6rem);
        padding-bottom: 6rem;
        min-height: 65vh;
    }
}

.ntono-cs-hero-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ntono-cs-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: overlay;
    filter: saturate(1.2) contrast(1.1);
}

.ntono-cs-hero-gradient {
    position: absolute;
    inset: 0;
    /* Cover the entire area like Stitch absolute inset-0 */
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 9, 10, 0.2), rgba(11, 9, 10, 1));
    z-index: 1;
}

.ntono-cs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.ntono-cs-hero-badge-wrap {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    /* Stitch flex justify-center */
}

.ntono-cs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ntono-color-primary, #ffb703);
    /* Stitch bg-primary */
    color: #000;
    /* Stitch text-black */
    padding: 0.375rem 1rem;
    /* Stitch px-4 py-1.5 */
    border-radius: 9999px;
    /* Stitch rounded-full */
    font-size: 0.75rem;
    /* Stitch text-xs */
    font-weight: 700;
    /* Stitch font-bold */
    text-transform: uppercase;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05),
        /* Tailwind shadow-lg */
        0 0 40px -10px rgba(122, 0, 0, 0.5);
    /* Stitch red-glow */
    animation: ntono-bounce 1s infinite;
    /* Stitch animate-bounce */
}

@keyframes ntono-bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.ntono-cs-badge-icon {
    font-size: 0.875rem;
    /* Stitch text-sm */
    /* No accent color, inherits black */
}

.ntono-cs-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    text-shadow: 0 0 20px rgba(244, 195, 47, 0.3);
    /* Stitch text-glow */
}

.ntono-cs-text-primary {
    color: var(--ntono-color-primary, #ffb703);
}

.ntono-cs-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.625;
    max-width: 42rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
}

.ntono-cs-lead {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--ntono-text-muted, #a0a0a0);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* 3. Tech Sidebar wrapper & Base Body Layout */
.ntono-cs-body-section {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Desktop layout constraint */
@media (min-width: 1024px) {
    .ntono-cs-body-section {
        flex-direction: row;
        max-width: var(--ntono-container-max, 1400px);
        margin: 0 auto;
        padding: 0 5%;
        gap: 4rem;
    }

    .ntono-cs-tech-sidebar-wrapper {
        flex: 0 0 var(--cs-sidebar-width);
        position: relative;
    }

    .ntono-cs-main-tech {
        flex: 1;
        min-width: 0;
        padding-top: 1.5rem; /* Reduced from 5rem to avoid double padding */
        padding-bottom: var(--cs-spacing-lg);
    }
}

/* Sidebar Styling */

.ntono-cs-tech-sidebar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Desktop Fixed Layout */
@media (min-width: 1024px) {
    .ntono-cs-body-section {
        position: relative;
    }

    .ntono-cs-tech-sidebar-wrapper {
        position: fixed;
        right: 2rem;
        top: 8rem;
        z-index: 40;
        width: 18rem;
        /* 72 units from Tailwind w-72 */
        pointer-events: none;
        mix-blend-mode: normal;
    }

    .ntono-cs-tech-sidebar {
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        scrollbar-width: none;
    }

    .ntono-cs-tech-sidebar::-webkit-scrollbar {
        display: none;
    }
}

.ntono-cs-tech-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ntono-cs-tech-sidebar-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ntono-color-primary, #ffb703);
    font-weight: 700;
}

.ntono-cs-tech-sidebar-icon {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.125rem;
    /* Slightly larger icon to visually match the text height */
    cursor: pointer;
    transition: color 0.3s ease;
}

.ntono-cs-tech-sidebar-icon:hover {
    color: var(--ntono-color-primary, #ffb703);
}

.ntono-cs-tech-detail {
    margin-bottom: 0;
    /* Gap handles spacing */
}

.ntono-cs-tech-detail h4 {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.ntono-cs-tech-detail p {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.ntono-cs-client-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.ntono-cs-client-name {
    font-size: 1.125rem !important;
    font-weight: 800 !important;
}

.ntono-cs-industry-pill {
    background: rgba(255, 183, 3, 0.15);
    color: var(--ntono-color-primary, #ffb703);
    border: 1px solid rgba(255, 183, 3, 0.4);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ntono-cs-kpis-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.ntono-cs-kpi-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.ntono-cs-kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ntono-color-primary, #ffb703);
    line-height: 1;
}

.ntono-cs-kpi-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.ntono-cs-tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ntono-cs-tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.625rem;
    font-weight: 500;
    color: #fff;
}

.ntono-cs-tech-stack-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    /* Align tags to right matching value column */
}

.ntono-cs-tech-action {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ntono-cs-tech-btn {
    box-sizing: border-box;
    /* fix for width: 100% overflowing padding */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    border: 1px solid var(--ntono-color-primary, #ffb703);
    color: var(--ntono-color-primary, #ffb703);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ntono-cs-tech-btn .material-symbols-outlined {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.ntono-cs-tech-btn:hover {
    background: var(--ntono-color-primary, #ffb703);
    color: #000;
}

.ntono-cs-tech-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Sidebar State Modifiers (Global) */
.ntono-cs-tech-sidebar.is-collapsed-state {
    background: rgba(30, 28, 29, 0.9);
}

.ntono-cs-tech-sidebar-inner.is-collapsed {
    max-height: none;
    /* overrides desktop max-height */
    overflow: hidden;
}

.ntono-cs-tech-sidebar-inner.is-collapsed .ntono-cs-tech-detail,
.ntono-cs-tech-sidebar-inner.is-collapsed .ntono-cs-tech-action {
    display: none;
}

.ntono-cs-tech-sidebar-inner.is-collapsed .ntono-cs-tech-sidebar-header {
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    border-bottom: none;
}

/* Mobile Sidebar Overrides (Bottom Floating & Collapsible) */
@media (max-width: 1023px) {

    /* Interactive Dark Backdrop Veil */
    .ntono-cs-sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        /* removed blur to avoid blurring the sidebar itself, rely only on rgba background */
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .ntono-cs-sidebar-backdrop.is-active {
        opacity: 1;
        visibility: hidden;
    }

    /* Fixed Bottom Wrapper */
    .ntono-cs-tech-sidebar-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        margin: 0;
        padding: 0;
    }

    .ntono-cs-tech-sidebar {
        margin: 0;
        border-radius: 24px 24px 0 0;
        border-bottom: none;
        background: rgb(49 48 48 / 54%);
        backdrop-filter: blur(24px);
        padding: 1.5rem 5%;
        border-left: none;
        border-right: none;
        transition: background 0.3s ease;
    }

    .ntono-cs-tech-sidebar-inner {
        max-height: 75vh;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .ntono-cs-tech-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    .ntono-cs-tech-sidebar-header {
        position: sticky;
        top: 0;
        background: inherit;
        z-index: 2;
        padding-top: 0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        cursor: pointer;
    }

    /* Bumping title sizes on mobile */
    .ntono-cs-tech-sidebar-title {
        font-size: 1.35rem;
    }

    .ntono-cs-tech-sidebar-icon {
        display: block;
        color: var(--ntono-color-primary, #ffb703);
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .ntono-cs-tech-sidebar-wrapper {
        width: 60%;
        left: auto;
        right: 0;
    }
}

/* 4. Main Content (Challenge / Solution Grid) */
.ntono-cs-tech-grid-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cs-spacing-md);
}

@media (min-width: 768px) {
    .ntono-cs-tech-grid-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.ntono-cs-tech-col {
    display: flex;
    flex-direction: column;
}

.ntono-cs-tech-section-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    /* Stitch: text-4xl to text-6xl */
    font-weight: 800;
    /* Stitch: font-extrabold */
    color: #fff;
    margin-bottom: 2rem;
    /* Stitch: mb-8 */
    letter-spacing: -0.025em;
    /* Stitch: tracking-tight */
}

.ntono-cs-tech-desc-lead {
    font-size: 1.125rem;
    /* Stitch: text-lg */
    color: var(--ntono-text-muted, #a0a0a0);
    /* Stitch text-white/70 approx */
    line-height: 2;
    /* Stitch: leading-loose */
    margin-bottom: 2.5rem;
    /* Stitch: mb-10 */
}

.ntono-cs-tech-content-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    /* Height based on content, anchored to bottom */
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .ntono-cs-tech-content-box {
        min-width: 166px;
        /* User requested constraint */
    }
}

.ntono-cs-box-accent {
    background: rgba(255, 183, 3, 0.05);
    /* very subtle primary tint */
    border-color: rgba(255, 183, 3, 0.15);
}

.ntono-cs-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ntono-cs-point-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ntono-cs-point-icon {
    color: var(--ntono-color-primary, #ffb703);
    font-size: 1.5rem;
    margin-top: 0.15rem;
    /* Optical align */
}

.ntono-cs-point-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.ntono-cs-point-desc {
    font-size: 0.9375rem;
    color: var(--ntono-text-muted, #a0a0a0);
    line-height: 1.5;
    margin: 0;
}

/* 5. Visual Identity Section */
.ntono-cs-identity-section {
    padding: var(--cs-spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-cs-identity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ntono-cs-identity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ntono-cs-identity-centered {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
}

.ntono-cs-identity-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ntono-color-primary, #ffb703);
    margin-bottom: 0.5rem;
}

.ntono-cs-identity-font-name {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.ntono-cs-specimen-chars {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-style: italic;
    /* The custom dynamic Google font is loaded via an inline !important class in PHP */
}

.ntono-cs-specimen-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    font-weight: 300;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--ntono-color-primary, #ffb703);
}

.ntono-cs-identity-centered .ntono-cs-specimen-desc {
    border-left: none;
    border-bottom: 4px solid var(--ntono-color-primary, #ffb703);
    padding-left: 0;
    padding-bottom: 1rem;
    display: inline-block;
}

.ntono-cs-identity-colors {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    margin-left: 1.5rem;
    /* Offset for overlapping negative margin */
    padding-top: 1rem;
}

.ntono-cs-identity-centered .ntono-cs-identity-colors {
    justify-content: center;
    margin-left: 0;
    padding-left: 1.5rem;
    /* Keeps the whole block optically centered */
}

.ntono-cs-color-swatch {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--ntono-bg-dark, #0b090a);
    position: relative;
    margin-left: -1.5rem;
    /* Overlap effect */
}

.ntono-cs-identity-video-wrapper,
.ntono-cs-identity-mockup {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.ntono-cs-mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 6. Strategy Breakdown / Frameworks Section (Funnel Carousel) */
.ntono-cs-ui-section {
    padding: var(--cs-spacing-lg) 0;
    background: #161a1d;
    position: relative;
    z-index: 1;
}

/* ── Section Header ──────────────────────────────── */
.ntono-cs-ui-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}

.ntono-cs-ui-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.ntono-cs-ui-desc {
    font-size: 1.125rem;
    color: var(--ntono-text-muted, #94a3b8);
    line-height: 1.6;
    font-weight: 300;
}

/* ── Swiper Container ────────────────────────────── */
.funnel-swiper-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .funnel-swiper-container {
        padding: 0 2.5rem 2.5rem;
    }
}

/* ── Card Layout ─────────────────────────────────── */
.funnel-card-item {
    height: auto;
}

.funnel-card-inner {
    display: flex;
    flex-direction: column;
    background: rgba(11, 17, 32, 0.8);
    border-radius: 1.25rem;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.2),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.funnel-card-inner:hover {
    transform: translateY(-6px);
    border-color: rgba(250, 169, 22, 0.3);
    box-shadow:
        0 20px 40px -12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(250, 169, 22, 0.08);
}

/* ── Card Image ──────────────────────────────────── */
.funnel-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: #0a0e1a;
}

.funnel-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.funnel-card-inner:hover .funnel-card-image {
    transform: scale(1.05);
}

/* ── Card Content ────────────────────────────────── */
.funnel-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
    .funnel-card-content {
        padding: 1.75rem 2rem;
    }
}

.funnel-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.375rem 0;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .funnel-card-title {
        font-size: 1.25rem;
    }
}

.funnel-card-inner:hover .funnel-card-title {
    color: var(--ntono-color-primary, #FAA916);
}

.funnel-card-desc {
    font-size: 0.875rem;
    color: var(--ntono-text-muted, #94a3b8);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* ── Swiper Pagination ───────────────────────────── */
.funnel-swiper-container .swiper-pagination {
    bottom: 0;
    position: relative;
    margin-top: 1rem;
}

.funnel-swiper-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.2;
    transition: opacity 0.3s ease, width 0.3s ease;
    border-radius: 4px;
}

.funnel-swiper-container .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    background: var(--ntono-color-primary, #FAA916);
}


/* ── Zoom hint icon on card hover ───────────────── */
.funnel-card-inner {
    position: relative;
    /* ensure it's positioned for the zoom hint */
}

.funnel-card-zoom-hint {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 5;
}

.funnel-card-zoom-hint .material-icons {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.funnel-lb-trigger:hover .funnel-card-zoom-hint,
.funnel-lb-trigger:focus-visible .funnel-card-zoom-hint {
    opacity: 1;
    transform: scale(1);
}

.funnel-lb-trigger {
    cursor: zoom-in;
}

/* ── Ntono Lightbox (New Zoomable Component) ────────────────── */
.ntono-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: ntonoLbFadeIn 0.3s ease;
    overflow: hidden;
}

.ntono-lightbox[hidden] {
    display: none;
}

@keyframes ntonoLbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ntono-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.94);
    backdrop-filter: blur(16px);
    z-index: -1;
}

/* Toolbar */
.ntono-lightbox-toolbar {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ntono-lightbox-tool, .ntono-lightbox-close {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ntono-lightbox-tool:hover, .ntono-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ntono-color-primary, #FAA916);
}

.ntono-lightbox-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.25rem;
}

/* Viewport & Container */
.ntono-lightbox-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: default;
}

.ntono-lightbox-container {
    position: relative;
    transition: transform 0.1s ease-out; /* Small delay for smooth scroll zoom */
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.ntono-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-radius: 4px;
}

/* States */
.ntono-lightbox-viewport.is-zoomed {
    cursor: grab;
}

.ntono-lightbox-viewport.is-dragging {
    cursor: grabbing;
}

.ntono-lightbox-viewport.is-dragging .ntono-lightbox-container {
    transition: none; /* No lag while dragging */
}

/* Navigation */
.ntono-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ntono-lightbox-nav:hover {
    background: rgba(250, 169, 22, 0.15);
    border-color: rgba(250, 169, 22, 0.4);
    color: #FAA916;
}

.ntono-lightbox-prev { left: 2rem; }
.ntono-lightbox-next { right: 2rem; }

.ntono-lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 60;
    text-align: center;
    pointer-events: none;
}

@media (max-width: 768px) {
    .ntono-lightbox-nav { display: none; }
    .ntono-lightbox-toolbar { top: 1rem; right: 1rem; }
}

/* ── Masonry Grid (legacy, kept for non-swiper UI) ── */

.ntono-cs-ui-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ntono-cs-ui-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.ntono-cs-ui-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .ntono-cs-ui-col-stagger-1 {
        margin-top: 4rem;
    }

    .ntono-cs-ui-col-stagger-2 {
        margin-top: 8rem;
    }
}

.ntono-cs-ui-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ntono-cs-ui-item:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.6));
}

.ntono-cs-ui-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* 7. Lightbox */
.ntono-cs-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(10px);
}

.ntono-cs-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.ntono-cs-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease;
}

.ntono-cs-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    padding: 0.5rem;
}

.ntono-cs-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ntono-cs-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
    /* keep translateY */
}

.ntono-cs-lightbox-prev {
    left: 2rem;
}

.ntono-cs-lightbox-next {
    right: 2rem;
}

@media (max-width: 767px) {

    .ntono-cs-lightbox-prev,
    .ntono-cs-lightbox-next {
        display: none !important;
        /* hide arrows on mobile */
    }

}

/* Blueprint Engine (Vanilla CSS Translation) ======================================= */
.ntono-blueprint-engine-wrapper {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: var(--ntono-bg-dark, #0b090a);
    position: relative;
    overflow: hidden;
}

.ntono-blueprint-header {
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .ntono-blueprint-header {
        margin-bottom: 4rem;
        text-align: left;
    }
}

.ntono-blueprint-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ntono-blueprint-header h2 {
        font-size: 3rem;
    }
}

.ntono-blueprint-header p {
    color: #94a3b8;
    /* slate-400 */
    font-size: 1.125rem;
}

.ntono-blueprint-canvas {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    margin-bottom: 3rem;
    min-height: 350px;
}

@media (min-width: 768px) {
    .ntono-blueprint-canvas {
        margin-bottom: 4rem;
    }
}

.ntono-blueprint-footer {
    margin-top: 0;
}

.ntono-blueprint-svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.ntono-blueprint-energy {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #f4c32f; 
    stroke-width: 5px; /* Slightly thicker for premium feel */
    visibility: visible !important;
    /* CSS Glow: Multiple shadows for depth without the SVG filter bug */
    filter: drop-shadow(0 0 5px rgba(244, 195, 47, 0.6)) 
            drop-shadow(0 0 10px rgba(244, 195, 47, 0.4));
}

.ntono-blueprint-nodes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-bottom: 2rem; /* Reduced from 5rem */
}

@media (min-width: 768px) {
    .ntono-blueprint-nodes {
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-flow: column;
        align-items: start;
        gap: 0;
        position: relative;
        z-index: 10;
        width: 100%;
        margin-bottom: 2rem; /* Reduced from 5rem */
    }

    .ntono-blueprint-nodes .ntono-blueprint-spacer {
        display: none !important;
    }
}

.ntono-blueprint-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 45%;
    cursor: default;
}

@media (min-width: 768px) {
    .ntono-blueprint-node {
        width: auto;
    }
}

.ntono-blueprint-box {
    width: 7rem;
    height: 7rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ntono-blueprint-node:hover .ntono-blueprint-box {
    transform: scale(1.05);
}

.ntono-blueprint-box--default {
    background-color: #1F2326;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ntono-blueprint-node:hover .ntono-blueprint-box--default {
    border-color: rgba(255, 255, 255, 0.3);
}

.ntono-blueprint-box--highlight {
    background-color: var(--ntono-color-primary, #F4C32F);
    box-shadow: 0 0 30px rgba(244, 195, 47, 0.4);
}


/* Interactive Hover Effects for Clickable Nodes */
.ntono-blueprint-click-target {
    cursor: pointer;
}

.ntono-blueprint-click-target:hover .ntono-blueprint-box {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.ntono-blueprint-click-target:hover .ntono-blueprint-box--default {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.ntono-blueprint-click-target:hover .ntono-blueprint-box--highlight {
    box-shadow: 0 0 40px rgba(244, 195, 47, 0.6);
}

.ntono-blueprint-click-target:hover .ntono-blueprint-icon {
    transform: scale(1.1);
    color: #ffffff;
}

.ntono-blueprint-click-target:hover .ntono-blueprint-icon--highlight {
    color: #000000;
}

.ntono-blueprint-icon {
    font-size: 2.25rem;
    transition: transform 0.3s ease;
}

.ntono-blueprint-node:hover .ntono-blueprint-icon {
    transform: scale(1.10);
}

.ntono-blueprint-icon--default {
    color: #94a3b8;
}

.ntono-blueprint-icon--highlight {
    color: #000000;
}

.ntono-blueprint-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    text-align: center;
}

.ntono-blueprint-title--default {
    color: #ffffff;
}

.ntono-blueprint-title--highlight {
    color: var(--ntono-color-primary, #F4C32F);
}

.ntono-blueprint-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.4;
    max-width: 140px;
}

.ntono-blueprint-spacer {
    display: none;
    pointer-events: none;
    width: 100%;
}


@media (min-width: 768px) {
    .ntono-blueprint-spacer {
        display: block;
    }
}

/* ===============================================================
   TOP PERFORMING ADS CAROUSEL
   =============================================================== */

.ntono-ads-section {
    padding: var(--cs-spacing-lg, 5rem) 0;
    background: var(--ntono-bg-dark, #0B090A);
    position: relative;
    overflow: hidden;
}

/* subtle carbon texture overlay (optional — matches Stitch reference) */
.ntono-ads-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* ── Header row ──────────────────────────────────── */
.ntono-ads-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ntono-ads-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 0.25rem 0;
}

.ntono-ads-desc {
    font-size: 1rem;
    color: var(--ntono-text-muted, #94a3b8);
    margin: 0;
}

/* ── Navigation arrows ───────────────────────────── */
.ntono-ads-nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ntono-ads-nav-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ntono-ads-nav-btn:hover {
    background: #fff;
    color: #000;
}

.ntono-ads-nav-btn.swiper-button-disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ── Swiper container ────────────────────────────── */
.ntono-ads-swiper {
    width: 100%;
    overflow: visible;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .ntono-ads-swiper {
        padding: 0 2.5rem;
    }
}

/* ── Card ────────────────────────────────────────── */
.ntono-ads-card {
    height: auto;
}

.ntono-ads-card-inner {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 2 / 3;
    /* portrait — matches the Stitch tall card */
    background: #161a1d;
}

.ntono-ads-card-inner:hover {
    border-color: rgba(250, 169, 22, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ── Image ───────────────────────────────────────── */
.ntono-ads-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.ntono-ads-card-inner:hover .ntono-ads-image {
    transform: scale(1.06);
}

/* ── Gradient overlay ────────────────────────────── */
.ntono-ads-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            transparent 75%);
    z-index: 1;
    pointer-events: none;
}

/* ── Status / format badges ──────────────────────── */
.ntono-ads-badges {
    position: absolute;
    bottom: 5.5rem;
    left: 1.25rem;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.ntono-ads-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

/* Winner — gold */
.ntono-ads-badge--winner {
    background: var(--ntono-color-primary, #FAA916);
    color: #000;
}

/* Stable */
.ntono-ads-badge--stable {
    background: rgba(154, 125, 58, 0.85);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(250, 169, 22, 0.3);
}

/* Retargeting */
.ntono-ads-badge--retargeting {
    background: rgba(92, 77, 49, 0.85);
    backdrop-filter: blur(12px);
    color: var(--ntono-color-primary, #FAA916);
    border: 1px solid rgba(250, 169, 22, 0.3);
}

/* Testing */
.ntono-ads-badge--testing {
    background: rgba(40, 40, 50, 0.85);
    backdrop-filter: blur(12px);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Format tag — glass white */
.ntono-ads-badge--format {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Metrics (CPR / CTR) ─────────────────────────── */
.ntono-ads-metrics {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.ntono-ads-metric {
    flex: 1;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.6rem 1rem;
}

.ntono-ads-metric-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ntono-text-muted, #94a3b8);
    margin: 0 0 0.15rem 0;
}

.ntono-ads-metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ntono-color-primary, #FAA916);
    margin: 0;
    line-height: 1;
}

/* ===============================================================
   FUNNEL VIDEO SECTION (Presto Player Walkthrough)
   =============================================================== */

.ntono-fv-section {
    padding: var(--cs-spacing-lg, 5rem) 0;
    background: var(--ntono-bg-dark, #0B090A);
    position: relative;
}

/* subtle warm glow in the background */
.ntono-fv-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(250, 169, 22, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ntono-fv-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1200px) {
    .ntono-fv-inner {
        padding: 0 2.5rem;
    }
}

/* ── Label row ───────────────────────────────────── */
.ntono-fv-label-row {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ntono-fv-label {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.ntono-fv-desc {
    font-size: 1rem;
    color: var(--ntono-text-muted, #94a3b8);
    margin: 0;
    font-weight: 300;
}

/* ── Player frame ────────────────────────────────── */
.ntono-fv-frame {
    width: 100%;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 1px rgba(250, 169, 22, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.5);
    background: #0d0d12;
}

/* Override Presto Player internal padding/border-radius to blend */
.ntono-fv-frame .presto-player__wrap,
.ntono-fv-frame [class*="presto-player"] {
    border-radius: 0 !important;
}

/* ── Fallback poster ─────────────────────────────── */
.ntono-fv-poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.ntono-fv-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
    transition: filter 0.4s ease;
}

.ntono-fv-poster:hover .ntono-fv-poster-img {
    filter: brightness(0.45);
}

.ntono-fv-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntono-fv-play-btn {
    width: 5rem;
    height: 5rem;
    background: var(--ntono-color-primary, #FAA916);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(250, 169, 22, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ntono-fv-poster:hover .ntono-fv-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(250, 169, 22, 0.5);
}

.ntono-fv-play-btn .material-icons {
    font-size: 2.5rem;
    color: #000;
    margin-left: 0.2rem;
    /* optical centering for play triangle */
}

/* ===============================================================
   NUMBERS SECTION ("The Numbers Don't Lie")
   =============================================================== */

.ntono-numbers-section {
    padding: var(--cs-spacing-lg, 5rem) 0;
    background: var(--ntono-bg-neutral, #161a1d);
    position: relative;
}

.ntono-numbers-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ntono-numbers-inner {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* ── LEFT COLUMN ─────────────────────────────────── */

/* Headline */
.ntono-numbers-headline-wrap {
    margin-bottom: 2rem;
}

.ntono-numbers-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0;
}

.ntono-numbers-headline-white {
    color: #fff;
}

.ntono-numbers-headline-accent {
    color: var(--ntono-color-primary, #FAA916);
}

/* Bullet list */
.ntono-numbers-bullets {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ntono-numbers-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ntono-numbers-bullet-icon .material-icons {
    font-size: 1.1rem;
    color: var(--ntono-color-primary, #FAA916);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.ntono-numbers-bullet-text {
    font-size: 1rem;
    color: var(--ntono-text-muted, #cbd5e1);
    line-height: 1.55;
    font-weight: 300;
}

/* ── Stat Card ───────────────────────────────────── */
.ntono-numbers-card {
    background: #0b0b0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ntono-numbers-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-numbers-card-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ntono-numbers-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(250, 169, 22, 0.12);
    border: 1px solid rgba(250, 169, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ntono-numbers-card-icon .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--ntono-color-primary, #FAA916);
}

.ntono-numbers-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.15rem 0;
}

.ntono-numbers-card-sublabel {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
}

.ntono-numbers-card-stat {
    text-align: right;
    flex-shrink: 0;
}

.ntono-numbers-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF9F43;
    margin: 0 0 0.2rem 0;
    letter-spacing: -0.02em;
}

.ntono-numbers-card-growth {
    font-size: 0.7rem;
    font-weight: 700;
    color: #2ECC71;
    margin: 0;
}

/* ── SVG Chart ───────────────────────────────────── */
.ntono-numbers-chart-wrap {
    padding: 0;
}

.ntono-numbers-chart {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.ntono-numbers-chart-line {
    fill: none;
    stroke: #FAA916;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* dashoffset animation managed by JS */
}

/* Peak label badge */
.ntono-numbers-chart-peak-bg {
    fill: var(--ntono-color-primary, #FAA916);
}

.ntono-numbers-chart-peak-text {
    fill: #000;
    font-size: 10px;
    font-weight: 800;
    font-family: inherit;
}

/* ── RIGHT COLUMN — Browser Frame ────────────────── */
.ntono-numbers-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ntono-numbers-browser-frame {
    width: 100%;
    max-width: 560px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
}

/* Traffic-light dots */
.ntono-numbers-browser-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ntono-numbers-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    display: inline-block;
}

.ntono-numbers-dot--red {
    background: #ff5f57;
}

.ntono-numbers-dot--yellow {
    background: #febc2e;
}

.ntono-numbers-dot--green {
    background: #28c840;
}

.ntono-numbers-browser-screen {
    line-height: 0;
}

.ntono-numbers-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}