/* ============================================
   UV UNIFIED — NHaas SLIM Variant
   Lighter weights throughout — editorial elegance
   900 Black → 500 Medium for headings
   500 Medium → 300 Light for subheadings & body
   ============================================ */

@font-face { font-family: 'NHaas'; src: url('../cod3x/fonts/NHaasGrotesk-45Lt.otf') format('opentype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'NHaas'; src: url('../cod3x/fonts/NHaasGrotesk-65Md.otf') format('opentype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'NHaas'; src: url('../cod3x/fonts/NHaasGrotesk-95Blk.otf') format('opentype'); font-weight: 900; font-display: swap; }

/* ---- Tokens ---- */
:root {
    --sans: 'NHaas', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', monospace;
    --bg0: #ededed;
    --bg1: #e5e5e5;
    --bg2: #ddd;
    --inverse: #353535;
    --border: #c8c8c8;
    --accent: #18778C;
    --accent-light: #1a8fa8;
    --mint: #4ecdc4;
    --green: #2d5a4a;
    --text: #353535;
    --text-2: #666;
    --text-3: #888;
    --ease: cubic-bezier(.25,.1,.25,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font: 500 15px/1.6 var(--sans);
    color: var(--text);
    background: #d8d8d8;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}
::selection { background: var(--accent); color: var(--bg1); }
a { color: inherit; text-decoration: none; }


/* ---- Page Shell ---- */
.uv-page {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--bg1);
    min-height: 100vh;
    box-shadow: -1px 0 0 var(--border), 1px 0 0 var(--border);
}


/* ---- Navbar ---- */
.uv-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border);
}
.uv-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 500 13px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.uv-nav-logo img { height: 28px; width: 28px; border-radius: 4px; }
.uv-nav-links { display: flex; gap: 4px; margin-left: auto; }
.uv-nav-links a {
    font: 500 13px/1 var(--sans);
    padding: 10px 16px;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.uv-nav-links a:hover { background: rgba(0,0,0,0.04); }
.uv-nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.uv-nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
}
.uv-nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: var(--text-3);
    transition: color 0.2s ease, background 0.2s ease;
}
.uv-nav-social a:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}
.uv-nav-cta {
    font: 500 12px/1 var(--sans);
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 4px;
    letter-spacing: 0.03em;
    transition: background 0.2s ease;
}
.uv-nav-cta:hover { background: var(--accent-light); }
.uv-nav-toggle { display: none; }


/* ---- Section Primitives ---- */
.uv-section {
    padding: 104px 56px;
    border-top: 1px solid var(--border);
    position: relative;
}
.uv-section--dark {
    background: var(--inverse);
    border-top-color: rgba(255,255,255,0.08);
}
.uv-section--alu { background: var(--bg2); }

.uv-eyebrow {
    font: 500 11px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin: 0 0 20px;
}
.uv-section--dark .uv-eyebrow { color: var(--accent-light); }

.uv-heading {
    font: 300 clamp(30px, 3.5vw, 42px)/1.15 var(--sans);
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 14px;
}
.uv-section--dark .uv-heading { color: rgba(255,255,255,0.95); }
.uv-heading-punch {
    font-family: 'Bitter', serif;
    font-weight: 500;
    font-style: italic;
}
.uv-heading em {
    font-style: inherit;
    font-weight: 700;
    font-size: calc(1em + 2px);
    letter-spacing: -0.035em;
    background: linear-gradient(to bottom, var(--accent), var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.uv-section--dark .uv-heading em {
    font-family: var(--sans);
    font-style: normal;
    font-weight: 300;
    font-size: inherit;
    letter-spacing: inherit;
    background: none;
    -webkit-text-fill-color: var(--mint);
    color: var(--mint);
}

.uv-subtitle {
    font: 500 14px/1.55 var(--sans);
    letter-spacing: 0.02em;
    color: var(--text-2);
    max-width: 440px;
    margin: 0 0 40px;
    text-wrap: balance;
}
.uv-section--dark .uv-subtitle { color: rgba(255,255,255,0.7); }

/* Section header with fade line */
.uv-section-hdr {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 44px;
}
.uv-section-hdr .uv-eyebrow { margin: 0; padding: 10px 16px; border: 1px solid var(--border); border-radius: 3px; }
.uv-section--dark .uv-section-hdr .uv-eyebrow { border-color: rgba(255,255,255,0.12); }
.uv-section-hdr::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}
.uv-section--dark .uv-section-hdr::after { background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent); }


/* ---- Hero ---- */
.uv-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-top: 1px solid var(--border);
}
.uv-hero-left {
    padding: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    border-right: 1px solid var(--border);
}
.uv-hero-title {
    font: 300 clamp(26px, 3.2vw, 36px)/1.08 var(--sans);
    letter-spacing: -0.01em;
    color: var(--text-2);
    margin: 0;
}
.uv-hero-title span {
    display: block;
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-style: italic;
    font-size: calc(clamp(56px, 7.5vw, 86px) + 2px);
    line-height: 0.92;
    margin-top: 4px;
    letter-spacing: -0.035em;
    padding-right: 4px;
    color: var(--text);
    background: linear-gradient(to bottom, var(--accent), var(--text) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.uv-hero-tags {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.uv-hero-tags span {
    font: 500 11px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--bg0);
}
.uv-hero-desc {
    font: 500 13px/1.55 var(--sans);
    max-width: 280px;
    margin: 20px 0 24px;
    color: var(--text-2);
}
.uv-hero-cta { display: flex; gap: 10px; justify-content: flex-end; }
.uv-hero-cta a {
    font: 500 11px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 22px;
    border-radius: 3px;
    transition: all 0.2s ease;
}
.uv-hero-cta a:first-child { background: var(--inverse); color: var(--bg1); }
.uv-hero-cta a:first-child:hover { background: var(--accent); }
.uv-hero-cta a:last-child { border: 1px solid var(--border); background: var(--bg0); }
.uv-hero-cta a:last-child:hover { background: var(--bg2); }

.uv-hero-right {
    position: relative;
    min-height: clamp(300px, 50vh, 500px);
    background: var(--bg1);
    overflow: hidden;
}
.uv-hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}
.uv-hero-right canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Trusted strip */
.uv-trusted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 24px 56px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg0);
}
.uv-trusted-label {
    font: 500 11px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    white-space: nowrap;
}
.uv-trusted-logos { display: flex; align-items: center; gap: 40px; }
.uv-trusted-logos img { height: 36px; width: auto; opacity: 0.6; transition: opacity 0.2s ease; }
.uv-trusted-logos img[alt="NVIDIA Inception"] { height: 48px; }
.uv-trusted-logos img[alt="Google Cloud"] { height: 28px; }
.uv-trusted-logos img[alt="Ethereum Foundation"] { height: 38px; }
.uv-trusted-logos img[alt="Stanford Blockchain"] { height: 36px; }
.uv-trusted-logos img[alt="0G Labs"] { height: 28px; }
.uv-trusted-logos img[alt="z.ai"] { height: 34px; }
.uv-trusted-logos img[alt="Adaption Labs"] { height: 48px; }
.uv-trusted-logos img:hover { opacity: 1; }
.uv-trusted-logos .uv-logo-invert { filter: invert(1) brightness(1.8); opacity: 0.5; }
.uv-trusted-logos .uv-logo-invert:hover { opacity: 0.8; }
.uv-marquee-dup { display: none; }


/* ---- Accordion Pillars ---- */
.uv-pillars { display: flex; flex-direction: column; gap: 8px; }
.uv-pillar {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg0);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.uv-pillar:hover { border-color: rgba(24,119,140,0.2); }
.uv-pillar-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}
.uv-pillar-icon canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.uv-pillar h3 {
    font: 500 18px/1.25 var(--sans);
    margin: 0 0 6px;
    transition: color 0.2s ease;
}
.uv-pillar:hover h3 { color: var(--accent); }
.uv-pillar-short {
    font: 500 14px/1.5 var(--sans);
    color: var(--text-2);
    margin: 0;
    max-width: 640px;
    height: auto; opacity: 1;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.2s ease;
}
.uv-pillar.is-open .uv-pillar-short { height: 0; opacity: 0; }
.uv-pillar-full {
    font: 300 16px/1.6 var(--sans);
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7);
    margin: 0;
    max-width: 780px;
    height: 0; opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease 0.05s;
}
.uv-pillar.is-open .uv-pillar-full { height: auto; opacity: 1; }
.uv-pillar-toggle {
    font: 300 20px/1 var(--sans);
    color: var(--text-3);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease, color 0.2s ease;
}
.uv-pillar:hover .uv-pillar-toggle { color: var(--accent); }
.uv-pillar.is-open .uv-pillar-toggle { transform: rotate(45deg); color: var(--mint); }

/* Pillar open state — dark room */
.uv-pillar.is-open {
    background: var(--inverse);
    border-color: rgba(45,90,74,0.3);
}
.uv-pillar.is-open .uv-pillar-icon { opacity: 1; }
.uv-pillar.is-open h3 { color: var(--mint); }


/* ---- Metrics Bar (embedded dark) ---- */
.uv-metrics {
    display: flex;
    align-items: center;
    background: var(--inverse);
    border-radius: 4px;
    padding: 36px 48px;
    margin-top: 24px;
}
.uv-metric { flex: 1; text-align: center; }
.uv-metric-val {
    font: 300 clamp(36px, 4vw, 52px)/1 var(--sans);
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, var(--mint), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.uv-metric-lbl {
    font: 500 11px/1.4 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.4);
}
.uv-metric-lbl--short { display: none; }
.uv-metric-sep { width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0; margin: 0 32px; }


/* Dark section texture */
.uv-section--dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.uv-section--dark > * { position: relative; z-index: 1; }

/* ---- Learnings Carousel ---- */
.uv-carousel {
    display: flex;
    gap: 6px;
    height: 380px;
}
.uv-carousel-panel {
    flex: 0 0 76px;
    position: relative;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.55s cubic-bezier(.4,0,.2,1), background 0.3s ease, border-color 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.uv-carousel-panel.is-active {
    flex: 1 1 0;
    cursor: default;
    background: rgba(255,255,255,0.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.uv-carousel-panel.is-active::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--mint));
    opacity: 0.5;
    z-index: 1;
}
.uv-carousel-panel.is-active::after {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(ellipse, rgba(24,119,140,0.06), transparent 60%);
    pointer-events: none;
}
.uv-carousel-panel:not(.is-active) {
    border-left: 2px solid rgba(24,119,140,0.25);
}
.uv-carousel-panel:not(.is-active):hover {
    background: rgba(255,255,255,0.045);
    border-color: rgba(24,119,140,0.35);
    border-left-color: rgba(24,119,140,0.6);
}

/* Collapsed label — vertical "book spine" */
.uv-carousel-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font: 300 24px/1 var(--sans);
    color: #fff;
    padding: 24px 0;
    transition: opacity 0.25s ease, color 0.25s ease;
    letter-spacing: -0.01em;
}
.uv-carousel-panel.is-active .uv-carousel-label {
    opacity: 0;
    pointer-events: none;
}
.uv-carousel-panel:not(.is-active):hover .uv-carousel-label {
    color: rgba(255,255,255,0.75);
}

/* Expanded content — two-column: text + visual */
.uv-carousel-content {
    padding: 32px 36px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.uv-carousel-panel.is-active .uv-carousel-content {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.2s;
}
.uv-carousel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.uv-carousel-num {
    font: 500 12px/1 var(--mono);
    color: rgba(24,119,140,0.4);
    letter-spacing: 0.04em;
}
.uv-carousel-tag {
    font: 500 10px/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-light);
}
.uv-carousel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    flex: 1;
    align-items: center;
}
.uv-carousel-text h4 {
    font: 300 clamp(22px, 2.8vw, 30px)/1.2 var(--sans);
    color: rgba(255,255,255,0.95);
    margin: 0 0 14px;
}
.uv-carousel-text p {
    font: 500 14px/1.65 var(--sans);
    color: rgba(255,255,255,0.4);
    margin: 0;
}
.uv-carousel-visual {
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    height: 100%;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5), inset 0 0 4px rgba(255,255,255,0.03);
}
/* Observation-window vignette overlay */
.uv-carousel-visual::before {
    content: '';
    position: absolute; inset: 0; z-index: 5;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}
.uv-carousel-visual canvas {
    z-index: 1;
}

/* ---- Quote ---- */
.uv-quote {
    padding: 32px 56px 48px;
    text-align: center;
}
.uv-quote-rule {
    width: 40px;
    height: 2px;
    background: var(--accent);
    border: none;
    margin: 0 auto 28px;
    border-radius: 1px;
}
.uv-quote blockquote {
    font: 300 clamp(22px, 3vw, 34px)/1.35 var(--sans);
    color: var(--text);
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}
.uv-quote-punch {
    font-family: 'Bitter', serif;
    font-weight: 500;
    font-style: italic;
}
.uv-quote blockquote em {
    font-family: 'Bitter', serif;
    font-style: italic;
    font-weight: 700;
    font-size: calc(1em + 2px);
    letter-spacing: -0.035em;
    background: linear-gradient(to bottom, var(--accent), var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ---- Vision Statement ---- */
.uv-vision {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 56px;
}
.uv-vision-text {
    font: 300 clamp(24px, 2.8vw, 36px)/1.35 var(--sans);
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    color: var(--text);
}
.uv-vision-text em {
    font-style: normal;
    color: var(--accent);
}


/* ---- CTA ---- */
.uv-cta {
    background: var(--inverse);
    padding: 64px 56px 64px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.uv-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}
.uv-cta > * { position: relative; z-index: 1; }
.uv-cta h2 {
    font: 400 clamp(32px, 4vw, 48px)/1.15 var(--sans);
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.uv-cta > p {
    font: 300 16px/1.6 var(--sans);
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto 36px;
}
.uv-cta-tracks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}
.uv-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 32px 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: none;
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.4),
        inset 0 3px 30px rgba(0,0,0,0.7),
        inset 0 -3px 20px rgba(0,0,0,0.4),
        inset 0 0 80px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s ease;
}
@media (hover: hover) {
    .uv-cta-card:hover {
        box-shadow:
            inset 0 0 0 1px rgba(255,255,255,0.06),
            inset 0 3px 30px rgba(0,0,0,0.7),
            inset 0 -3px 20px rgba(0,0,0,0.4),
            inset 0 0 80px rgba(0,0,0,0.3);
    }
}
.uv-cta-card--agents {
    background: url('../assets/cta-agents.jpg') center/cover no-repeat;
}
.uv-cta-card--data {
    background: url('../assets/cta-data-1.jpg') center/cover no-repeat;
}

/* Hover overlay */
.uv-cta-card::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}
.uv-cta-card.is-revealed::after { opacity: 1; }
@media (hover: hover) {
    .uv-cta-card:hover::after { opacity: 1; }
}

/* Content layering */
.uv-cta-card h3,
.uv-cta-card p,
.uv-cta-card a,
.uv-cta-bottom {
    position: relative;
    z-index: 2;
}
.uv-cta-card h3 {
    font: 500 11px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    margin: 0 0 10px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.6);
}
.uv-cta-teaser {
    font: 400 13px/1.5 var(--sans);
    color: rgba(255,255,255,0.7);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
}
.uv-cta-card p {
    font: 300 15px/1.7 var(--sans);
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.uv-cta-card.is-revealed p {
    opacity: 1;
    transform: translateY(0);
}
@media (hover: hover) {
    .uv-cta-card:hover p {
        opacity: 1;
        transform: translateY(0);
    }
}
.uv-cta-card a {
    font: 500 12px/1 var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    align-self: flex-start;
    text-shadow: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.uv-cta-card a:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px rgba(24,119,140,0.15);
}


/* ---- Footer ---- */
.uv-footer {
    background: var(--bg1);
    padding: 48px 56px 28px;
    border-top: 1px solid var(--border);
}
.uv-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; margin-bottom: 36px; }
.uv-footer-brand { display: flex; flex-direction: column; gap: 10px; }
.uv-footer-brand-name { font: 500 13px/1 var(--sans); color: var(--text-2); }
.uv-footer-brand p { font: 500 12px/1.5 var(--sans); color: var(--text-3); max-width: 260px; margin: 0; }
.uv-footer-col h5 { font: 500 10px/1 var(--sans); text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin: 0 0 14px; }
.uv-footer-col a { display: block; font: 500 12px/1 var(--sans); color: var(--text-2); padding: 5px 0; transition: color 0.2s ease; }
.uv-footer-col a:hover { color: var(--text); }
.uv-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.uv-footer-copy { font: 500 10px/1 var(--sans); color: #aaa; }
.uv-footer-legal { display: flex; gap: 16px; }
.uv-footer-legal a { font: 500 10px/1 var(--sans); color: #aaa; transition: color 0.2s ease; }
.uv-footer-legal a:hover { color: var(--text-2); }


/* ---- Scroll Animation ---- */
.uv-anim {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.uv-anim.vis { opacity: 1; transform: none; }

/* ---- Focus states ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.uv-nav-links a:focus-visible,
.uv-nav-cta:focus-visible {
    outline-offset: 0;
    border-radius: 4px;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    .uv-anim { transition: none; }
    .uv-trusted-logos { animation: none !important; }
}

/* ---- Nav active state (shared) ---- */
.uv-nav-links a.is-current {
    background: rgba(0,0,0,0.04);
    color: var(--accent);
}

/* ---- FAQ accordion (shared) ---- */
.uv-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.uv-faq-item {
    padding: 18px 24px;
    background: var(--bg0);
    cursor: pointer;
    transition: background 0.2s ease;
}
.uv-faq-item:hover { background: var(--bg1); }
.uv-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.uv-faq-q h4 {
    font: 500 14px/1.4 var(--sans);
    margin: 0;
    flex: 1;
}
.uv-faq-toggle {
    font: 300 18px/1 var(--sans);
    color: var(--text-3);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
.uv-faq-item.is-open .uv-faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}
.uv-faq-a {
    font: 500 13px/1.6 var(--sans);
    color: var(--text-2);
    max-width: 580px;
    margin: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.uv-faq-item.is-open .uv-faq-a {
    height: auto;
    opacity: 1;
    margin-top: 10px;
}


/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .uv-hero { grid-template-columns: 1fr; }
    .uv-hero-left { align-items: flex-start; text-align: left; border-right: none; border-bottom: 1px solid var(--border); }
    .uv-hero-tags { justify-content: flex-start; }
    .uv-hero-cta { justify-content: flex-start; }
    .uv-section { padding: 80px 40px; }
    .uv-trusted { gap: 24px; padding: 20px 40px; flex-wrap: wrap; }
    .uv-carousel { flex-direction: column; height: auto; }
    .uv-carousel-panel { flex: 0 0 52px; }
    .uv-carousel-panel.is-active { flex: 0 0 auto; }
    .uv-carousel-label { writing-mode: horizontal-tb; transform: none; font-size: 15px; justify-content: flex-start; padding: 0 24px; }
    .uv-carousel-content { padding: 24px; }
    .uv-carousel-body { grid-template-columns: 1fr; }
    .uv-carousel-visual { min-height: 120px; }
    .uv-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    /* Mobile nav — hamburger drawer */
    .uv-nav { flex-wrap: wrap; padding: 14px 20px; }
    .uv-nav-links, .uv-nav-right { display: none; }
    .uv-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    .uv-nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 1px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .uv-nav.is-open .uv-nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .uv-nav.is-open .uv-nav-toggle span:nth-child(2) { opacity: 0; }
    .uv-nav.is-open .uv-nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .uv-nav.is-open .uv-nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 10;
        padding: 12px 0 4px;
        margin-top: 12px;
        border-top: 1px solid var(--border);
        gap: 0;
    }
    .uv-nav.is-open .uv-nav-links a {
        padding: 14px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        border-radius: 0;
    }
    .uv-nav.is-open .uv-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        order: 11;
        margin-top: 8px;
    }
    .uv-nav.is-open .uv-nav-cta {
        padding: 14px 20px;
    }

    .uv-section { padding: 64px 24px; }
    .uv-hero-left { padding: 32px 24px; }
    .uv-pillar { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 20px 24px; }
    .uv-pillar-icon { width: 40px; height: 40px; }
    .uv-hero-right { display: none; }
    .uv-hero { grid-template-columns: 1fr; }
    .uv-metrics { padding: 24px 16px; gap: 0; }
    .uv-metric-val { font-size: clamp(24px, 6vw, 36px); }
    .uv-metric-lbl { font-size: 10px; letter-spacing: 0.03em; }
    .uv-metric-lbl--full { display: none; }
    .uv-metric-lbl--short { display: inline; }
    .uv-metric-sep { height: 32px; margin: 0 8px; }
    .uv-footer { padding: 40px 24px 24px; }
    .uv-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .uv-trusted { padding: 16px 0; overflow: hidden; flex-direction: column; gap: 12px; }
    .uv-trusted-label { padding-left: 24px; align-self: flex-start; }
    .uv-trusted-logos {
        gap: 40px;
        flex-wrap: nowrap;
        animation: marquee 12s linear infinite;
        width: max-content;
    }
    .uv-trusted-logos img { flex-shrink: 0; }
    .uv-marquee-dup { display: inline !important; }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .uv-cta { padding: 64px 24px 48px; }
    .uv-cta-tracks { grid-template-columns: 1fr; }
    .uv-quote { padding: 40px 24px; }
    .uv-vision { padding: 56px 24px; }
    .uv-vision-text { text-align: left; }
    .uv-carousel-content { padding: 20px; }
    .uv-carousel-body { gap: 16px; }

    /* Footer — larger tap targets */
    .uv-footer-col a { font-size: 13px; padding: 8px 0; }

    /* Font bumps for mobile readability */
    .uv-eyebrow { font-size: 12px; }
    .uv-metric-lbl { font-size: 12px; }
}
