/* ═══════════════════════════════════════════════════════════════
   UBERHEAL V2 - PRODUCT PAGE CSS
   Aesthetic: Editorial × Clinical Precision × Luxury Healthcare
   Reusable structure for all product pages via CSS variables
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   PRODUCT PAGE CSS VARIABLES
   Override these per product page
   ────────────────────────────────────────── */
:root {
    --prod-accent: #3B63CF;
    --prod-accent-light: #5B82E0;
    --prod-accent-glow: rgba(59, 99, 207, 0.18);
    --prod-accent-faint: rgba(59, 99, 207, 0.06);
    --prod-accent-border: rgba(59, 99, 207, 0.2);

    --prod-surface: #0A0F1C;
    --prod-surface-raised: #111827;
    --prod-surface-high: #1A1F2E;
    --prod-border: rgba(255, 255, 255, 0.07);
    --prod-border-mid: rgba(255, 255, 255, 0.12);

    --prod-text-primary: #FFFFFF;
    --prod-text-secondary: #CBD5E1;
    --prod-text-muted: #64748B;
    --prod-text-accent: #3B63CF;

    --prod-img-bg: #141B2D;
    --prod-img-border: rgba(59, 99, 207, 0.15);

    /* Add font-mono if not already declared in styles.css */
    --font-mono: 'JetBrains Mono', monospace;

    --section-v: 110px;
    --section-v-sm: 72px;
}

/* ──────────────────────────────────────────
   KEYFRAMES
   ────────────────────────────────────────── */
@keyframes uh2-fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes uh2-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes uh2-slideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes uh2-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes uh2-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 99, 207, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(59, 99, 207, 0);
    }
}

@keyframes uh2-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes uh2-shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

@keyframes uh2-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes uh2-borderTrace {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes uh2-numberCount {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes uh2-lineGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

/* ──────────────────────────────────────────
   REVEAL SYSTEM (scroll-triggered)
   ────────────────────────────────────────── */
.uh2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.uh2-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.uh2-reveal--left {
    transform: translateX(-30px);
}

.uh2-reveal--left.is-visible {
    transform: none;
}

.uh2-reveal--right {
    transform: translateX(30px);
}

.uh2-reveal--right.is-visible {
    transform: none;
}

.uh2-reveal--scale {
    transform: scale(0.93);
}

.uh2-reveal--scale.is-visible {
    transform: none;
}

.uh2-reveal[data-delay="1"] {
    transition-delay: 0.1s;
}

.uh2-reveal[data-delay="2"] {
    transition-delay: 0.2s;
}

.uh2-reveal[data-delay="3"] {
    transition-delay: 0.3s;
}

.uh2-reveal[data-delay="4"] {
    transition-delay: 0.4s;
}

.uh2-reveal[data-delay="5"] {
    transition-delay: 0.5s;
}

/* ──────────────────────────────────────────
   SHARED UTILITIES
   ────────────────────────────────────────── */
.uh2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--prod-accent);
    margin-bottom: 20px;
}

.uh2-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--prod-accent);
}

.uh2-section-title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--prod-text-primary);
}

.uh2-section-sub {
    font-size: 1.05rem;
    color: var(--prod-text-secondary);
    line-height: 1.8;
    max-width: 560px;
}

.uh2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--prod-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 6px;
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    border: 1px solid transparent;
}

.uh2-btn-primary:hover {
    background: var(--prod-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 99, 207, 0.35);
}

.uh2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: transparent;
    color: var(--prod-text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--prod-border-mid);
    transition: color 0.22s, border-color 0.22s, background 0.22s;
}

.uh2-btn-ghost:hover {
    color: var(--prod-text-primary);
    border-color: var(--prod-accent-border);
    background: var(--prod-accent-faint);
}

/* Image placeholder framework - swap with real <img> */
.uh2-img-slot {
    position: relative;
    overflow: hidden;
    background: var(--prod-img-bg);
    border: 1px solid var(--prod-img-border);
}

.uh2-img-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uh2-img-slot__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--prod-text-muted);
}

.uh2-img-slot__placeholder svg {
    opacity: 0.3;
}

.uh2-img-slot__placeholder-label {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Shimmer animation for placeholder */
.uh2-img-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(59, 99, 207, 0.04) 50%,
            transparent 70%);
    background-size: 400px 100%;
    animation: uh2-shimmer 3s ease infinite;
}

/* Remove shimmer when real image is present */
.uh2-img-slot:has(img)::after {
    display: none;
}


/* ═══════════════════════════════════════════════════════════════
   01  HERO - EDITORIAL SPLIT
   Full-viewport, asymmetric, image on right with text overlay
   ═══════════════════════════════════════════════════════════════ */
.uh2-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #060A13;
}

/* Left panel - copy */
.uh2-hero__left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 100px 40px;
    background: #060A13;
    max-width: 760px;
}

.uh2-hero__left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            var(--prod-accent-border) 30%,
            var(--prod-accent-border) 70%,
            transparent);
    z-index: 3;
}

/* Decorative large number behind title */
.uh2-hero__bg-num {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 280px;
    font-weight: 800;
    line-height: 1;
    color: rgba(59, 99, 207, 0.04);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.06em;
}

.uh2-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 6px;
    background: rgba(59, 99, 207, 0.1);
    border: 1px solid var(--prod-accent-border);
    border-radius: 4px;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--prod-accent-light);
    margin-bottom: 32px;
    width: fit-content;
    opacity: 0;
    animation: uh2-slideRight 0.7s ease 0.1s forwards;
}

.uh2-hero__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--prod-accent);
    animation: uh2-pulse 2.2s ease infinite;
}

.uh2-hero__title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--prod-text-primary);
    margin-bottom: 28px;
    opacity: 0;
    animation: uh2-fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.uh2-hero__title em {
    font-style: normal;
    position: relative;
    display: inline-block;
}

/* Underline drawn line under em */
.uh2-hero__title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--prod-accent), var(--prod-accent-light));
    border-radius: 2px;
}

.uh2-hero__desc {
    font-size: 1.1rem;
    color: var(--prod-text-secondary);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 44px;
    opacity: 0;
    animation: uh2-fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.uh2-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    opacity: 0;
    animation: uh2-fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* Stat strip at bottom of hero left */
.uh2-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--prod-border);
    padding-top: 28px;
    opacity: 0;
    animation: uh2-fadeUp 0.75s ease 0.7s forwards;
}

.uh2-hero__stat {
    padding-right: 24px;
    border-right: 1px solid var(--prod-border);
}

.uh2-hero__stat:last-child {
    border-right: none;
    padding-left: 24px;
    padding-right: 0;
}

.uh2-hero__stat:nth-child(2) {
    padding: 0 24px;
}

.uh2-hero__stat-val {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--prod-text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.uh2-hero__stat-val span {
    color: var(--prod-accent-light);
    font-size: 1rem;
}

.uh2-hero__stat-key {
    font-size: 11px;
    color: var(--prod-text-muted);
    letter-spacing: 0.04em;
}

/* Right panel - hero image */
.uh2-hero__right {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.uh2-hero__img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 0;
}

/* gradient overlay on image side */
.uh2-hero__img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #060A13 0%, transparent 30%),
        linear-gradient(to top, #060A13 0%, transparent 25%);
    z-index: 2;
    pointer-events: none;
}

/* Floating info card over hero image */
.uh2-hero__float-card {
    position: absolute;
    bottom: 48px;
    left: 16px;
    z-index: 4;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--prod-accent-border);
    border-radius: 12px;
    padding: 18px 22px;
    backdrop-filter: blur(20px);
    min-width: 240px;
    opacity: 0;
    animation: uh2-scaleIn 0.6s ease 1.0s forwards;
}

.uh2-hero__float-card-label {
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--prod-text-muted);
    margin-bottom: 10px;
}

.uh2-hero__float-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--prod-border);
}

.uh2-hero__float-card-row:last-child {
    border-bottom: none;
}

.uh2-hero__float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.uh2-hero__float-dot--green {
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.uh2-hero__float-dot--blue {
    background: var(--prod-accent-light);
}

.uh2-hero__float-dot--amber {
    background: #F59E0B;
}

.uh2-hero__float-card-text {
    font-size: 12px;
    color: var(--prod-text-secondary);
}

/* Second float card - top right area */
.uh2-hero__float-badge {
    position: absolute;
    top: 140px;
    right: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    opacity: 0;
    animation: uh2-scaleIn 0.6s ease 1.2s forwards;
}

.uh2-hero__float-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C55E;
}

.uh2-hero__float-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--prod-text-primary);
}

.uh2-hero__float-badge-sub {
    font-size: 10px;
    color: var(--prod-text-muted);
}


/* ═══════════════════════════════════════════════════════════════
   02  TICKER - HORIZONTAL SCROLL STRIP
   ═══════════════════════════════════════════════════════════════ */
.uh2-ticker {
    overflow: hidden;
    border-top: 1px solid var(--prod-border);
    border-bottom: 1px solid var(--prod-border);
    padding: 18px 0;
    background: rgba(10, 15, 28, 0.6);
    position: relative;
}

.uh2-ticker::before,
.uh2-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.uh2-ticker::before {
    left: 0;
    background: linear-gradient(to right, #060A13, transparent);
}

.uh2-ticker::after {
    right: 0;
    background: linear-gradient(to left, #060A13, transparent);
}

.uh2-ticker__track {
    display: flex;
    width: max-content;
    animation: uh2-ticker 30s linear infinite;
}

.uh2-ticker__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 36px;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--prod-text-muted);
    white-space: nowrap;
}

.uh2-ticker__item-icon {
    width: 18px;
    height: 18px;
    color: var(--prod-accent);
    flex-shrink: 0;
}

.uh2-ticker__sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--prod-accent-border);
}


/* ═══════════════════════════════════════════════════════════════
   03  DISCOVERY SECTION - Text + Large Editorial Image
   ═══════════════════════════════════════════════════════════════ */
.uh2-discover {
    padding: var(--section-v) 0;
    background: #0A0F1C;
    position: relative;
}

/* Slanted background divider */
.uh2-discover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

.uh2-discover__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.uh2-discover__copy {}

.uh2-discover__lead {
    font-size: 1.1rem;
    color: var(--prod-text-secondary);
    line-height: 1.85;
    margin: 24px 0 36px;
}

/* Check-row list */
.uh2-check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.uh2-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.uh2-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(59, 99, 207, 0.12);
    border: 1px solid var(--prod-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--prod-accent-light);
}

.uh2-check-text {
    font-size: 0.95rem;
    color: var(--prod-text-secondary);
    line-height: 1.65;
}

/* IMAGE SLOT 1 - Discovery section, editorial portrait crop */
.uh2-discover__img-wrap {
    position: relative;
}

.uh2-discover__img-slot {
    border-radius: 16px;
    max-height: 600px;
}

/* Pull-out accent card overlapping image */
.uh2-discover__img-tag {
    position: absolute;
    bottom: -20px;
    left: -28px;
    background: var(--prod-surface-high);
    border: 1px solid var(--prod-accent-border);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.uh2-discover__img-tag-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(59, 99, 207, 0.12);
    border: 1px solid var(--prod-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prod-accent-light);
    flex-shrink: 0;
}

.uh2-discover__img-tag-val {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--prod-text-primary);
    line-height: 1;
    margin-bottom: 3px;
}

.uh2-discover__img-tag-key {
    font-size: 11px;
    color: var(--prod-text-muted);
}

/* Vertical accent line */
.uh2-discover__img-line {
    position: absolute;
    top: 24px;
    right: -20px;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, var(--prod-accent-border), transparent);
    transform-origin: top;
    animation: uh2-lineGrow 1s ease 0.8s both;
}


/* ═══════════════════════════════════════════════════════════════
   04  FEATURES - HORIZONTAL SCROLL CARDS (new layout)
   ═══════════════════════════════════════════════════════════════ */
.uh2-features {
    padding: var(--section-v) 0;
    background: #060A13;
    position: relative;
    overflow: hidden;
}

.uh2-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

.uh2-features__head {
    padding: 0 40px;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.uh2-features__head-left {
    max-width: 520px;
}

.uh2-features__head-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.uh2-feat-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--prod-border-mid);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prod-text-secondary);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.uh2-feat-nav-btn:hover {
    border-color: var(--prod-accent);
    color: var(--prod-text-primary);
    background: var(--prod-accent-faint);
}

/* Scroll track */
.uh2-features__scroll-outer {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    cursor: grab;
}

.uh2-features__scroll-outer::-webkit-scrollbar {
    display: none;
}

.uh2-features__scroll-outer:active {
    cursor: grabbing;
}

.uh2-features__track {
    display: flex;
    gap: 20px;
    padding: 0 40px 40px;
    width: max-content;
}

.uh2-feat-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--prod-surface-raised);
    border: 1px solid var(--prod-border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
}

.uh2-feat-card:hover {
    border-color: var(--prod-accent-border);
    background: #141B2D;
    transform: translateY(-4px);
}

/* top accent line */
.uh2-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--prod-accent), var(--prod-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.uh2-feat-card:hover::before {
    transform: scaleX(1);
}

/* large ghost number */
.uh2-feat-card__ghost {
    position: absolute;
    bottom: -10px;
    right: -4px;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    color: rgba(59, 99, 207, 0.05);
    letter-spacing: -0.06em;
    user-select: none;
    pointer-events: none;
    transition: color 0.3s;
}

.uh2-feat-card:hover .uh2-feat-card__ghost {
    color: rgba(59, 99, 207, 0.09);
}

.uh2-feat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--prod-accent-border);
    background: rgba(59, 99, 207, 0.08);
    color: var(--prod-accent-light);
    transition: background 0.3s;
}

.uh2-feat-card:hover .uh2-feat-card__icon {
    background: rgba(59, 99, 207, 0.14);
}

.uh2-feat-card__num {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--prod-text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.uh2-feat-card__title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--prod-text-primary);
    line-height: 1.3;
    margin-bottom: 14px;
}

.uh2-feat-card__text {
    font-size: 0.875rem;
    color: var(--prod-text-muted);
    line-height: 1.75;
}

/* mini visual inside some cards */
.uh2-feat-card__visual {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--prod-border);
}

.uh2-mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.uh2-mini-pill {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.uh2-mini-pill--on {
    background: rgba(59, 99, 207, 0.12);
    border: 1px solid var(--prod-accent-border);
    color: var(--prod-accent-light);
}

.uh2-mini-pill--off {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--prod-border);
    color: var(--prod-text-muted);
}

.uh2-notif-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.uh2-notif-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--prod-text-muted);
    padding: 7px 10px;
    background: rgba(6, 10, 19, 0.5);
    border-radius: 6px;
}

.uh2-notif-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.uh2-notif-dot--g {
    background: #22C55E;
}

.uh2-notif-dot--b {
    background: var(--prod-accent-light);
}

.uh2-notif-dot--a {
    background: #F59E0B;
}

.uh2-ins-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.uh2-ins-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: rgba(6, 10, 19, 0.5);
    border-radius: 6px;
    font-size: 11px;
    color: var(--prod-text-muted);
}

.uh2-ins-check--y {
    color: #22C55E;
}

.uh2-ins-check--n {
    color: #EF4444;
}

/* scroll progress bar */
.uh2-features__progress {
    display: flex;
    gap: 4px;
    padding: 0 40px;
    margin-top: 16px;
}

.uh2-feat-prog-dot {
    height: 2px;
    border-radius: 2px;
    background: var(--prod-border-mid);
    flex: 1;
    transition: background 0.3s;
}

.uh2-feat-prog-dot.active {
    background: var(--prod-accent);
}


/* ═══════════════════════════════════════════════════════════════
   05  SIMPLIFY SECTION - Timeline + Image
   ═══════════════════════════════════════════════════════════════ */
.uh2-simplify {
    padding: var(--section-v) 0;
    background: #0A0F1C;
    position: relative;
}

.uh2-simplify::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

.uh2-simplify__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Timeline steps */
.uh2-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
    position: relative;
}

/* vertical line */
.uh2-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(to bottom,
            var(--prod-accent-border),
            var(--prod-accent-border) 80%,
            transparent);
}

.uh2-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
    cursor: default;
}

.uh2-step:not(:last-child) {
    border-bottom: 1px solid var(--prod-border);
}

.uh2-step__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--prod-accent-border);
    background: var(--prod-surface-raised);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--prod-accent-light);
    position: relative;
    z-index: 1;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.uh2-step:hover .uh2-step__dot {
    border-color: var(--prod-accent);
    background: rgba(59, 99, 207, 0.15);
    box-shadow: 0 0 16px rgba(59, 99, 207, 0.3);
}

.uh2-step__body {
    flex: 1;
}

.uh2-step__title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--prod-text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.uh2-step__sub {
    font-size: 0.85rem;
    color: var(--prod-text-muted);
    line-height: 1.6;
}

/* IMAGE SLOT 2 - Simplify section, landscape/widescreen */
.uh2-simplify__right {
    position: relative;
    overflow: visible;
    /* allow overlapping card to bleed outside */
}

.uh2-simplify__img-slot {
    border-radius: 16px;
    position: sticky;
    top: 100px;
}

/* Info card overlapping image bottom-right */
.uh2-simplify__card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--prod-surface-high);
    border: 1px solid var(--prod-accent-border);
    border-radius: 12px;
    padding: 20px 24px;
    width: 200px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.uh2-simplify__card-title {
    font-family: var(--font-mono, monospace);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--prod-text-muted);
    margin-bottom: 12px;
}

.uh2-journey-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uh2-journey-mini-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--prod-text-secondary);
}

.uh2-journey-mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   06  WHY SECTION - Numbered grid, no cards (clean)
   ═══════════════════════════════════════════════════════════════ */
.uh2-why {
    padding: var(--section-v) 0;
    background: #060A13;
    position: relative;
    overflow: hidden;
}

.uh2-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

/* Giant background text */
.uh2-why__bg-text {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 240px;
    font-weight: 900;
    color: rgba(59, 99, 207, 0.025);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.uh2-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--prod-border);
    border: 1px solid var(--prod-border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 72px;
}

.uh2-why-item {
    background: #060A13;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.uh2-why-item:hover {
    background: #0A0F1C;
}

/* Large number watermark */
.uh2-why-item__num-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 100px;
    font-weight: 900;
    color: rgba(59, 99, 207, 0.05);
    line-height: 1;
    letter-spacing: -0.06em;
    user-select: none;
    pointer-events: none;
    transition: color 0.3s;
}

.uh2-why-item:hover .uh2-why-item__num-bg {
    color: rgba(59, 99, 207, 0.09);
}

/* Accent highlighted last item (06 - CTA card) */
.uh2-why-item:last-child {
    background: linear-gradient(135deg, rgba(59, 99, 207, 0.06), rgba(59, 99, 207, 0.02));
}

.uh2-why-item:last-child .uh2-why-item__num-bg {
    color: rgba(59, 99, 207, 0.1);
}

.uh2-why-item:last-child .uh2-why-item__label {
    color: rgba(91, 130, 224, 0.5);
}

.uh2-why-item:last-child .uh2-why-item__icon {
    background: rgba(59, 99, 207, 0.12);
    border-color: rgba(59, 99, 207, 0.3);
}

.uh2-why-item:last-child .uh2-why-item__title {
    color: #5B82E0;
}

.uh2-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--prod-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.uh2-why-item:hover::before {
    transform: scaleX(1);
}

.uh2-why-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 99, 207, 0.08);
    border: 1px solid var(--prod-accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prod-accent-light);
    margin-bottom: 20px;
    transition: background 0.3s;
}

.uh2-why-item:hover .uh2-why-item__icon {
    background: rgba(59, 99, 207, 0.15);
}

.uh2-why-item__label {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(59, 99, 207, 0.4);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.uh2-why-item__title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--prod-text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.uh2-why-item__text {
    font-size: 0.875rem;
    color: var(--prod-text-muted);
    line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════
   07  IMAGE BAND - Full-bleed editorial image strip (Image 3)
   ═══════════════════════════════════════════════════════════════ */
.uh2-img-band {
    position: relative;
    overflow: hidden;
}

.uh2-img-band__slot {
    aspect-ratio: 21/7;
    width: 100%;
    min-height: 280px;
    border-radius: 0;
}

/* Text overlay centered on image */
.uh2-img-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(6, 10, 19, 0.85) 0%,
            rgba(6, 10, 19, 0.5) 50%,
            rgba(6, 10, 19, 0.15) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.uh2-img-band__copy {
    padding: 0 40px;
    max-width: 800px;
}

.uh2-img-band__quote {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--prod-text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.uh2-img-band__quote em {
    font-style: normal;
    color: var(--prod-accent-light);
}


/* ═══════════════════════════════════════════════════════════════
   08  CTA - Diagonal split, asymmetric
   ═══════════════════════════════════════════════════════════════ */
.uh2-cta {
    padding: var(--section-v) 0;
    background: #0A0F1C;
    position: relative;
    overflow: hidden;
}

.uh2-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--prod-accent-border), transparent);
}

/* radial glow behind CTA block */
.uh2-cta__glow {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(59, 99, 207, 0.06) 0%,
            transparent 60%);
    pointer-events: none;
}

.uh2-cta__block {
    position: relative;
    border: 1px solid var(--prod-accent-border);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* left accent strip */
.uh2-cta__block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--prod-accent), var(--prod-accent-light), transparent);
}

.uh2-cta__left {
    padding: 72px 60px;
    background: rgba(59, 99, 207, 0.04);
    position: relative;
}

.uh2-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(59, 99, 207, 0.12);
    border: 1px solid var(--prod-accent-border);
    border-radius: 100px;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--prod-accent-light);
    margin-bottom: 28px;
}

.uh2-cta__badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--prod-accent-light);
    animation: uh2-pulse 2s ease infinite;
}

.uh2-cta__title {
    font-family: var(--font-head, 'Space Grotesk', sans-serif);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--prod-text-primary);
    margin-bottom: 20px;
}

.uh2-cta__sub {
    font-size: 1rem;
    color: var(--prod-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 460px;
}

.uh2-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* right side - trust items */
.uh2-cta__right {
    padding: 72px 56px;
    background: rgba(6, 10, 19, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.uh2-trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--prod-border);
    background: rgba(17, 24, 39, 0.5);
    transition: border-color 0.25s, background 0.25s;
}

.uh2-trust-item:hover {
    border-color: var(--prod-accent-border);
    background: var(--prod-accent-faint);
}

.uh2-trust-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(59, 99, 207, 0.1);
    border: 1px solid var(--prod-accent-border);
    color: var(--prod-accent-light);
}

.uh2-trust-item__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--prod-text-primary);
    margin-bottom: 4px;
}

.uh2-trust-item__text {
    font-size: 12px;
    color: var(--prod-text-muted);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .uh2-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .uh2-hero__right {
        height: 480px;
    }

    .uh2-hero__left {
        padding: 120px 32px 72px;
        max-width: 100%;
    }

    .uh2-hero__left::after {
        display: none;
    }

    .uh2-hero__float-card {
        left: 16px;
    }

    .uh2-discover__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .uh2-discover__img-slot {
        max-height: 400px;
    }

    .uh2-discover__img-tag {
        left: 12px;
    }

    .uh2-simplify__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .uh2-simplify__img-slot {
        position: static;
    }

    .uh2-simplify__card {
        right: 0;
        bottom: -16px;
    }

    .uh2-cta__block {
        grid-template-columns: 1fr;
    }

    .uh2-cta__right {
        border-top: 1px solid var(--prod-border);
    }
}

@media (max-width: 900px) {
    :root {
        --section-v: var(--section-v-sm);
    }

    .uh2-why__grid {
        grid-template-columns: 1fr 1fr;
    }

    .uh2-features__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .uh2-hero__left {
        padding: 120px 24px 60px;
        max-width: 100%;
    }

    .uh2-hero__stat:nth-child(2) {
        padding: 0px;
    }

    .uh2-hero__stat:last-child {
        padding-left: 0px;
    }

    .uh2-hero__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .uh2-hero__stat {
        border-right: none;
        border-bottom: 1px solid var(--prod-border);
        padding: 0 0 16px;
    }

    .uh2-hero__stat:last-child {
        border-bottom: none;
    }

    .uh2-hero__float-badge {
        right: 16px;
        top: 20px;
    }

    .uh2-hero__float-card {
        bottom: 20px;
        min-width: 200px;
    }

    .uh2-why__grid {
        grid-template-columns: 1fr;
    }

    .uh2-why-item {
        padding: 36px 28px;
    }

    .uh2-feat-card {
        width: 280px;
    }

    .uh2-features__track {
        padding: 0 24px 32px;
    }

    .uh2-features__head {
        padding: 0 24px;
    }

    .uh2-features__progress {
        padding: 0 24px;
    }

    .uh2-cta__left,
    .uh2-cta__right {
        padding: 48px 28px;
    }

    .uh2-cta__actions {
        flex-direction: column;
    }

    .uh2-btn-primary,
    .uh2-btn-ghost {
        justify-content: center;
        width: 100%;
    }

    .uh2-img-band__copy {
        padding: 0 24px;
    }

    .uh2-img-band__quote {
        font-size: 1.25rem;
    }

    .uh2-discover__img-line {
        display: none;
    }

    .uh2-discover__img-tag {
        left: 0;
        bottom: -16px;
        min-width: 180px;
    }

    .uh2-simplify__card {
        right: 0;
        bottom: -16px;
        width: 180px;
    }

    .uh2-timeline {
        margin-top: 32px;
    }
}
/* ═══════════════════════════════════════
   MOBILE RESPONSIVE FIXES — May 2026
   ═══════════════════════════════════════ */

@media (max-width: 900px) {
  .uh2-hero__left {
    padding: 100px 28px 60px;
  }
  .uh2-simplify__grid {
    gap: 48px;
  }
  .uh2-discover__grid {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .uh2-hero__left {
    padding: 80px 20px 48px;
  }
  .uh2-features__scroll-outer {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .uh2-feat-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .uh2-hero__stats {
    gap: 12px;
  }
  .uh2-feat-card {
    width: 250px;
    min-width: 250px;
  }
  .uh2-cta__block {
    padding: 36px 20px;
  }
  .uh2-why-item {
    padding: 20px;
  }
  .uh2-ticker__item {
    font-size: 13px;
    gap: 8px;
  }
  .uh2-discover__check {
    font-size: 13px;
  }
}
