/* =============================================================
   UNBLIND - Minimalist Presentation Deck
   Palette: white · gray · blue
   ============================================================= */

:root {
    --white: #ffffff;
    --bg: #ffffff;
    --bg-2: #f7f8fa;
    --surface: #f3f5f8;
    --border: #e5e7eb;
    --border-strong: #cbd1d9;
    --text: #0f172a;
    --text-soft: #475569;
    --text-mute: #64748b;
    --text-faint: #94a3b8;

    --blue: #1e6fff;
    --blue-soft: #4d8dff;
    --blue-bg: #eef4ff;

    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --topbar-h: 60px;
    --content-max: 1200px;
    --bg-dark: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    line-height: 1.55;
    font-feature-settings: "ss01", "cv11";
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

kbd {
    font-family: var(--font);
    font-size: 0.78em;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-weight: 500;
}

/* =============================================================
   TOP BAR
   ============================================================= */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-h);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

body.is-fullscreen .topbar {
    opacity: 0 !important;
    transform: translateY(-100%) !important;
    pointer-events: none !important;
    display: none !important;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 4px;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
    color: var(--text);
}

.topbar-actions {
    display: flex;
    gap: 4px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-mute);
    transition: all 0.2s var(--ease);
}

.icon-btn:hover {
    background: var(--surface);
    color: var(--text);
}

.icon-btn i {
    width: 18px;
    height: 18px;
}

/* =============================================================
   PROGRESS BAR
   ============================================================= */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    z-index: 60;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--blue);
    transition: width 0.4s var(--ease);
}

/* =============================================================
   SIDE NAV (DOTS)
   ============================================================= */
.side-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.3s var(--ease);
}

.side-nav .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--border-strong);
    transition: all 0.25s var(--ease);
    cursor: pointer;
    position: relative;
    padding: 0;
}

.side-nav .dot:hover {
    border-color: var(--text-mute);
    transform: scale(1.2);
}

.side-nav .dot.active {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.3);
}

.side-nav .dot[data-title]:hover::after {
    content: attr(data-title);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--text);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.74rem;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 500;
}

/* =============================================================
   PREV / NEXT ARROWS
   ============================================================= */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-mute);
    transition: all 0.2s var(--ease);
}

.nav-arrow:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow i {
    width: 20px;
    height: 20px;
}

.nav-prev {
    left: 24px;
}

.nav-next {
    right: 80px;
}

/* =============================================================
   SLIDE COUNTER
   ============================================================= */
.slide-counter {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 40;
    font-family: var(--font);
    font-size: 0.78rem;
    color: var(--text-mute);
    display: flex;
    gap: 4px;
    align-items: center;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}

.slide-counter #slide-current {
    color: var(--text);
    font-weight: 600;
}

.slide-counter .divider {
    color: var(--text-faint);
}

/* =============================================================
   HINT FOOTER
   ============================================================= */
.hint-footer {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    display: flex;
    gap: 14px;
    font-size: 0.72rem;
    color: var(--text-mute);
    transition: opacity 0.3s var(--ease);
}

.hint-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.is-fullscreen:not(.show-chrome) .hint-footer {
    opacity: 0;
    pointer-events: none;
}

/* =============================================================
   DECK / SLIDES
   ============================================================= */
.deck {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.deck::-webkit-scrollbar {
    display: none;
}

.slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--topbar-h) + 32px) 96px 96px;
    overflow: hidden;
    flex-direction: column;
}

.slide-cinema {
    justify-content: flex-end !important;
    padding-bottom: 120px !important;
}

body.is-fullscreen .slide {
    padding: 32px 96px;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 18px;
}

.eyebrow.center {
    display: inline-block;
}

.eyebrow.light {
    color: var(--white);
    opacity: 0.85;
}

.display-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--text);
}

.display-title.small {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.display-sub {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 16px;
}

.section-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section-title.center {
    text-align: center;
}

.slide-dark {
    background-color: #000 !important;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 64ch;
    font-weight: 400;
}

.lead.center {
    margin: 0 auto;
    text-align: center;
}

.center {
    text-align: center;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
[data-anim] {
    opacity: 0;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    transition-delay: var(--d, 0ms);
}

[data-anim="fade-up"] {
    transform: translateY(20px);
}

[data-anim="fade-down"] {
    transform: translateY(-20px);
}

[data-anim="fade-left"] {
    transform: translateX(24px);
}

[data-anim="fade-right"] {
    transform: translateX(-24px);
}

[data-anim="zoom-in"] {
    transform: scale(0.96);
}

.slide.is-active [data-anim] {
    opacity: 1;
    transform: none;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.2s var(--ease);
    border: 1px solid var(--border-strong);
    background: var(--white);
    color: var(--text);
}

.btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn.primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn.primary:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--white);
}

.btn.large {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn i {
    width: 16px;
    height: 16px;
}

/* =============================================================
   LAYOUTS
   ============================================================= */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

/* =============================================================
   HERO SLIDE
   ============================================================= */
.slide-hero {
    padding-top: calc(var(--topbar-h) + 16px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
}

.hero-meta {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.meta-item i {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.powered {
    color: var(--text-mute);
    font-size: 0.88rem;
}

.powered strong {
    color: var(--text);
    font-weight: 600;
    margin-left: 4px;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glasses,
.hero-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    object-fit: contain;
}




.big-stat {
    margin: 28px 0;
    padding: 24px 28px;
    border-radius: 12px;
    background: var(--blue-bg);
    border-left: 3px solid var(--blue);
}

.big-stat-num {
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
}

.big-stat-num .suffix {
    font-size: 0.55em;
    color: var(--blue);
}

.big-stat-label {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bullet-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bullet-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-soft);
}

.bullet-icon i {
    width: 16px;
    height: 16px;
}

.bullet-list strong {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.bullet-list p {
    color: var(--text-mute);
    font-size: 0.88rem;
    margin-top: 2px;
}

.img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.img-caption {
    padding: 10px 14px;
    font-size: 0.7rem;
    color: var(--text-mute);
    text-align: right;
    background: var(--white);
    border-top: 1px solid var(--border);
}

/* =============================================================
   CINEMA SLIDE (transition image)
   ============================================================= */
.slide-cinema {
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--text);
}

.slide-cinema .cinema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.cinema-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 32px;
    color: var(--white);
}

.cinema-content .eyebrow.light {
    color: var(--white);
    opacity: 0.85;
}

.cinema-title {
    font-size: clamp(2.75rem, 6.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-top: 18px;
}

.cinema-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================
   SOLUTION SLIDE
   ============================================================= */
.slide-solution {
    gap: 24px;
    padding-top: calc(var(--topbar-h) + 24px);
}

.solution-head {
    text-align: center;
    max-width: var(--content-max);
    margin-bottom: 20px;
}

.solution-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
}

.proto-main-img {
    width: 150%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
    margin-left: -20%;
    transition: transform 0.3s var(--ease);
}

.proto-main-img:hover {
    transform: scale(1.02);
}

.feat-card {
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.25s var(--ease);
}

.feat-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.feat-card.highlight {
    background: var(--blue-bg);
    border-color: var(--blue-soft);
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--blue);
}

.feat-card.highlight .feat-icon {
    background: var(--white);
}

.feat-icon i {
    width: 20px;
    height: 20px;
}

.feat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feat-card p {
    font-size: 0.84rem;
    color: var(--text-mute);
    line-height: 1.5;
}

.hardware-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: var(--content-max);
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-top: 10px;
}

.hardware-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.hardware-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-soft);
}

.hardware-list i {
    width: 14px;
    height: 16px;
    color: var(--blue);
}

/* =============================================================
   AUDIO SLIDE
   ============================================================= */
.audio-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-visual img {
    width: 100%;
    max-width: 650px;
    object-fit: contain;
}

.kpi-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.kpi {
    padding: 18px 22px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    min-width: 170px;
}

.kpi strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.03em;
}

.kpi span {
    font-size: 0.82rem;
    color: var(--text-mute);
    margin-top: 6px;
    display: block;
}

/* =============================================================
   DEMO SLIDE
   ============================================================= */
.demo-wrap {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.demo-card {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: left;
}

.demo-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: var(--surface);
}

.demo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.15);
}

.demo-pulse i {
    width: 28px;
    height: 28px;
}

.demo-cta {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.demo-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.demo-cta p {
    color: var(--text-mute);
    font-size: 0.92rem;
}

.demo-cta .btn {
    align-self: flex-start;
    margin-top: 6px;
}

/* =============================================================
   IMPACT SLIDE
   ============================================================= */
.slide-impact {
    gap: 28px;
    padding-top: calc(var(--topbar-h) + 36px);
}

.impact-head {
    text-align: center;
    max-width: 900px;
}

.quote-headline {
    font-size: clamp(1.75rem, 3.4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    width: 100%;
    max-width: var(--content-max);
}

.metric-card {
    padding: 22px 18px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s var(--ease);
}

.metric-card:hover {
    border-color: var(--blue);
}

.metric-card.highlight {
    background: var(--blue-bg);
    border-color: var(--blue-soft);
}

.metric-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.metric-card.highlight .metric-num {
    color: var(--blue);
}

.metric-label {
    font-size: 0.78rem;
    color: var(--text-mute);
    margin-top: 6px;
}

.testi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: var(--content-max);
}

.testi-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testi-avatar-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 4px solid var(--blue-bg);
    background: var(--surface);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testi-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.testi-card blockquote {
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
}

.testi-card figcaption {
    font-size: 0.82rem;
    color: var(--text-mute);
}

/* =============================================================
   DIFFERENTIATION SLIDE
   ============================================================= */
.slide-diff {
    gap: 24px;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    width: 100%;
    max-width: var(--content-max);
    align-items: start;
}

.diff-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.diff-point {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.2s var(--ease);
}

.diff-point:hover {
    border-color: var(--blue);
}

.diff-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.diff-icon i {
    width: 18px;
    height: 18px;
}

.diff-point h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.diff-point p {
    font-size: 0.85rem;
    color: var(--text-mute);
}

.comp-table {
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    padding: 12px 18px;
    font-size: 0.82rem;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.comp-row:last-child {
    border-bottom: 0;
}

.comp-head {
    background: var(--surface);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    color: var(--text-mute);
}

.comp-row .brand-col {
    font-weight: 600;
    color: var(--text);
}

.comp-row [data-lucide="check"] {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.comp-row [data-lucide="x"] {
    width: 18px;
    height: 18px;
    color: var(--text-faint);
}

.comp-head .brand-col {
    color: var(--blue);
}

/* =============================================================
   BUSINESS SLIDE
   ============================================================= */
.slide-business {
    gap: 24px;
}

.biz-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 22px;
    width: 100%;
    max-width: var(--content-max);
}

.biz-pricing,
.biz-subs {
    padding: 28px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
}

.biz-pricing h3,
.biz-subs h3 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.price-row strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.price-row.highlight strong {
    color: var(--blue);
}

.sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sub-tier {
    padding: 22px 18px;
    border-radius: 10px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.2s var(--ease);
}

.sub-tier:hover {
    border-color: var(--blue);
}

.sub-tier h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.sub-price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.sub-price small {
    font-size: 0.5em;
    color: var(--text-mute);
    font-weight: 500;
}

.sub-tier ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sub-tier ul li {
    font-size: 0.82rem;
    color: var(--text-soft);
    padding-left: 14px;
    position: relative;
}

.sub-tier ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.sub-tier.popular {
    background: var(--bg-2);
    border-color: var(--border);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    background: var(--blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
}

/* =============================================================
   MARKET SLIDE
   ============================================================= */
.slide-market {
    gap: 28px;
    padding-top: calc(var(--topbar-h) + 40px);
}

.slide-market .section-title {
    margin-bottom: 20px;
}

.market-circles {
    position: relative;
    width: 460px;
    height: 460px;
    margin: 100px auto 0;
}

.market-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.market-circles .tam {
    inset: 0;
    border-color: var(--border-strong);
    background: var(--bg-2);
    align-items: flex-start;
    padding-top: 25px;
}

.market-circles .sam {
    inset: 16%;
    border-color: var(--blue-soft);
    background: var(--blue-bg);
    align-items: flex-start;
    padding-top: 50px;
}

.market-circles .som {
    inset: 34%;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(30, 111, 255, 0.1);
    align-items: center;
}

.circle-content {
    padding: 0 16px;
}

.circle h3 {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--text-mute);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.circle-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.circle.som .circle-num {
    color: var(--blue);
}

.circle-desc {
    font-size: 0.7rem;
    color: var(--text-mute);
    margin-top: 4px;
    max-width: 18ch;
}

.circle.tam .circle-content {
    transform: translateY(-160px);
}

.circle.sam .circle-content {
    transform: translateY(-100px);
}

.circle.som .circle-content {
    transform: translateY(0);
}

.strategy-row {
    width: 100%;
    max-width: var(--content-max);
    text-align: center;
}

.strategy-row h3 {
    font-size: 0.78rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    font-weight: 600;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.phase {
    padding: 16px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: left;
}

.phase-tag {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.phase p {
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* =============================================================
   GROWTH SLIDE
   ============================================================= */
.slide-growth {
    gap: 26px;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 760px;
}

.growth-stat {
    padding: 22px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
}

.growth-stat.highlight {
    background: var(--blue-bg);
    border-color: var(--blue-soft);
}

.growth-year {
    color: var(--blue);
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.growth-units {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.growth-rev {
    font-size: 0.9rem;
    color: var(--text-mute);
}

.chart-wrap {
    width: 100%;
    max-width: 920px;
    padding: 20px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
}

.chart-wrap img {
    width: 100%;
    object-fit: contain;
    border-radius: 6px;
}

/* =============================================================
   AWARDS SLIDE
   ============================================================= */
.slide-awards {
    gap: 22px;
    padding-top: calc(var(--topbar-h) + 32px);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    width: 100%;
    max-width: var(--content-max);
}

.award-tile {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.2s var(--ease);
    overflow: hidden;
}

.award-tile:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.award-tile img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.2s var(--ease);
}

.award-tile:hover img {
    filter: grayscale(0);
}

/* =============================================================
   TEAM SLIDE
   ============================================================= */
.slide-team {
    gap: 24px;
    padding-top: calc(var(--topbar-h) + 32px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
    max-width: var(--content-max);
}

.team-card {
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s var(--ease);
}

.team-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.avatar-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.zoom-img.zoom-max {
    transform: scale(2.8) !important;
    object-position: center bottom !important;
}

.zoom-img.zoom-alfonso {
    transform: scale(1.8) !important;
    object-position: center 20% !important;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .role {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.team-card p {
    font-size: 0.84rem;
    color: var(--text-mute);
}

.advisor-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
}

.advisor-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.advisor-tag {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
}

.advisor-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.advisor-card p {
    font-size: 0.82rem;
    color: var(--text-mute);
}

/* =============================================================
   ROADMAP SLIDE
   ============================================================= */
.slide-roadmap {
    gap: 28px;
    padding-top: calc(var(--topbar-h) + 36px);
}

.timeline {
    position: relative;
    width: 100%;
    max-width: var(--content-max);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: var(--border);
}

.t-item {
    position: relative;
    padding-top: 56px;
    text-align: left;
}

.t-dot {
    position: absolute;
    top: 14px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-strong);
    z-index: 2;
    transition: all 0.2s var(--ease);
}

.t-item.highlight .t-dot {
    border-color: var(--blue);
    background: var(--blue);
}

.t-date {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
}

.t-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.t-item p {
    font-size: 0.84rem;
    color: var(--text-mute);
    line-height: 1.5;
}

/* =============================================================
   INVESTING SLIDE
   ============================================================= */
.invest-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
}

.invest-left .section-title {
    margin-bottom: 18px;
}

.amount {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 14px;
}

.amount .dollar {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-mute);
    margin-top: 14px;
}

.amount .num {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    color: var(--blue);
}

.amount .cur {
    font-size: 0.92rem;
    color: var(--text-mute);
    letter-spacing: 0.14em;
    margin-top: 28px;
    font-weight: 500;
}

.invest-left .badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    background: var(--text);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 16px;
}

.invest-right {
    padding: 28px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
}

.invest-right h3 {
    font-size: 0.76rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
    font-weight: 600;
}

.alloc {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.alloc-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.alloc-head span:last-child {
    color: var(--text);
    font-weight: 600;
}

.alloc-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
}

.alloc-bar .fill {
    height: 100%;
    width: 0;
    background: var(--blue);
    border-radius: 999px;
    transition: width 1s var(--ease);
}

.slide.is-active .alloc-bar .fill {
    width: var(--w);
}

/* =============================================================
   QUOTE SLIDE
   ============================================================= */
.slide-quote {
    padding: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--text);
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 111, 255, 0.55));
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    padding: 0 32px;
    color: var(--white);
}

.quote-mark {
    font-size: 6rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: -10px;
    font-weight: 700;
}

.quote-main {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
}

.quote-author {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    font-weight: 500;
}

.quote-tag {
    margin-top: 32px;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.92);
}

/* =============================================================
   CONTACT SLIDE
   ============================================================= */
.contact-wrap {
    width: 100%;
    max-width: 880px;
    text-align: center;
}

.contact-wrap .section-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
}

.contact-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: left;
    transition: all 0.2s var(--ease);
}

.contact-card:hover {
    border-color: var(--blue);
    background: var(--blue-bg);
}

.contact-card i {
    width: 22px;
    height: 22px;
    color: var(--blue);
    flex-shrink: 0;
}

.c-label {
    display: block;
    font-size: 0.68rem;
    color: var(--text-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.c-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2px;
}

.contact-foot {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-mute);
    font-size: 0.82rem;
}

.contact-foot img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.7;
}

/* =============================================================
   HELP MODAL
   ============================================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s var(--ease);
}

.modal-overlay[hidden] {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-card {
    position: relative;
    width: min(420px, 90vw);
    padding: 28px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.modal-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mute);
    transition: all 0.2s var(--ease);
}

.modal-close:hover {
    background: var(--surface);
    color: var(--text);
}

.kbd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kbd-list li {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--text-soft);
    font-size: 0.88rem;
}

/* =============================================================
   OVERVIEW
   ============================================================= */
.overview {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 28px 40px;
    overflow-y: auto;
    animation: fadeIn 0.2s var(--ease);
}

.overview[hidden] {
    display: none;
}

.overview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.overview-head h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.overview-tile {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.overview-tile:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.overview-tile.active {
    border-color: var(--blue);
    background: var(--blue-bg);
}

.overview-tile .ot-num {
    font-size: 0.74rem;
    color: var(--blue);
    letter-spacing: 0.12em;
    font-weight: 600;
}

.overview-tile .ot-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

/* =============================================================
   FULLSCREEN MODE TWEAKS
   ============================================================= */
body.is-fullscreen .progress-bar {
    z-index: 70;
}

body.is-fullscreen:not(.show-chrome) .nav-arrow {
    opacity: 0;
    pointer-events: none;
}

body.is-fullscreen:not(.show-chrome) .side-nav {
    opacity: 0.3;
}

body.is-fullscreen:not(.show-chrome) .slide-counter {
    opacity: 0.4;
}

body.is-fullscreen .nav-next {
    right: 24px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
    .slide {
        padding: calc(var(--topbar-h) + 24px) 56px 56px;
    }

    .nav-prev {
        left: 12px;
    }

    .nav-next {
        right: 60px;
    }

    body.is-fullscreen .nav-next {
        right: 12px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feat-card.highlight {
        grid-column: span 3;
    }

    .demo-card {
        grid-template-columns: 1fr;
    }

    .demo-img-wrap {
        min-height: 220px;
    }

    .metrics-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .testi-row {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .biz-grid {
        grid-template-columns: 1fr;
    }

    .invest-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .market-circles {
        width: 360px;
        height: 360px;
    }

    .phase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .slide {
        padding: calc(var(--topbar-h) + 16px) 24px 56px;
    }

    .side-nav {
        display: none;
    }

    .nav-arrow {
        width: 38px;
        height: 38px;
    }

    .nav-arrow i {
        width: 18px;
        height: 18px;
    }

    .display-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-card.highlight {
        grid-column: span 2;
    }

    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-row .metric-card.highlight {
        grid-column: span 2;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .market-circles {
        width: 320px;
        height: 320px;
    }

    .market-circles .tam {
        inset: 0;
    }

    .market-circles .sam {
        inset: 40px;
    }

    .market-circles .som {
        inset: 100px;
    }

    .circle.tam .circle-content {
        transform: translateY(-95px);
    }

    .circle.sam .circle-content {
        transform: translateY(-65px);
    }

    .amount .num {
        font-size: 4rem;
    }

    .amount .dollar {
        font-size: 1.75rem;
        margin-top: 8px;
    }

    .hint-footer {
        display: none;
    }

    .topbar {
        padding: 0 14px;
    }

    .brand-name {
        display: none;
    }

    .nav-prev {
        left: 8px;
    }

    .nav-next {
        right: 8px;
    }

    body.is-fullscreen .nav-next {
        right: 8px;
    }

    .slide-counter {
        left: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* =============================================================
   NATIVE CHART FOR SLIDE 11
   ============================================================= */
.chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 10px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 10px;
}

.chart-bar {
    width: 60px;
    background: var(--blue-soft);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease-out;
}

.chart-bar.highlight {
    background: var(--blue);
}

.chart-bar .val {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.chart-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* =============================================================
   ABSOLUTE FULLSCREEN OVERLAY (RESTORED)
   ============================================================= */
body.is-fullscreen .topbar,
body.is-fullscreen .side-nav,
body.is-fullscreen .nav-arrow,
body.is-fullscreen .slide-counter,
body.is-fullscreen .hint-footer {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.is-fullscreen .deck {
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.is-fullscreen .slide {
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 4vh 4vw !important;
    border: none !important;
    box-sizing: border-box !important;
}


/* =============================================================
   NATIVE CHART FOR SLIDE 11
   ============================================================= */
.chart-bar-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    border-bottom: 2px solid var(--border-strong);
    padding-bottom: 10px;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    gap: 10px;
}

.chart-bar {
    width: 60px;
    background: var(--blue-soft);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease-out;
}

.chart-bar.highlight {
    background: var(--blue);
}

.chart-bar .val {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.chart-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-soft);
}

/* =============================================================
   FINAL UI REFINEMENTS & FIXES
   ============================================================= */

/* 1. Slide 2: Dark Theme (Slide 3 is now white by removing .slide-problem styles) */
.slide-dark,
.slide-cinema {
    background-color: #000 !important;
}

/* 2. Slide 5: Solution Slide Layout */
.slide-solution {
    justify-content: center !important;
    padding-top: calc(var(--topbar-h) + 1vh) !important;
    padding-bottom: 1vh !important;
}

.slide-solution .solution-main {
    display: grid !important;
    grid-template-columns: 1.3fr 0.7fr !important;
    gap: 0 !important;
    align-items: center !important;
    width: 100%;
}

.proto-main-img {
    display: block !important;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.18));
}

.solution-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-left: 3vw !important;
}

.feat-card {
    padding: 6px 10px !important;
}

.feat-card h3 {
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
}

.slide-solution .lead {
    font-size: 0.9rem !important;
    margin-bottom: 1vh !important;
}

.slide-solution .section-title {
    margin-bottom: 0.2vh !important;
    font-size: 1.8rem !important;
}

.feat-card p {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    opacity: 0.85 !important;
    margin-bottom: 0 !important;
}

/* 3. Slide 11: Market Size Circle Labels */
.market-circles .circle {
    display: flex !important;
    flex-direction: column !important;
}

.market-circles .tam {
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 20px !important;
}

.market-circles .sam {
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 100px !important;
}

.market-circles .som {
    align-items: center !important;
    justify-content: center !important;
    padding-top: 20px !important;
}

/* 4. Slide 14: Team Grid & Large Portraits */
.team-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
}

.avatar-wrap {
    width: 100% !important;
    max-width: 220px !important;
    height: 260px !important;
    margin: 0 auto 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
}

.avatar-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
}

/* Apply specific zoom levels as requested */
.zoom-img.zoom-max {
    transform: scale(2.8) !important;
    object-position: center bottom !important;
}

.zoom-img.zoom-alfonso {
    transform: scale(1.8) !important;
    object-position: center 15% !important;
}

/* 5. Audio Demo Radar Fixes */
.radar-zone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 10;
}

.radar-zone.active {
    opacity: 1 !important;
}

.radar-left {
    left: 20%;
}

.radar-right {
    right: 20%;
}

.radar-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--blue);
    border-radius: 50%;
    animation: radarPulse 1.5s infinite ease-out;
}

.radar-ring.delay-1 {
    animation-delay: 0.75s;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.radar-label {
    margin-top: 140px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
}

/* =============================================================
   SMART RESPONSIVE TEXT FOR LIVE PITCH
   ============================================================= */
html,
body {
    font-size: clamp(16px, min(1.8vw, 2.5vh), 24px) !important;
}

.lead {
    font-size: 1.25rem !important;
    line-height: 1.4;
}

.section-title {
    font-size: clamp(2.5rem, min(5vw, 7vh), 4.5rem) !important;
    margin-bottom: 2vh !important;
}

.bullet-list strong {
    font-size: 1.25rem !important;
}

.bullet-list p {
    font-size: 1.05rem !important;
}

.hardware-list li {
    font-size: 1.15rem !important;
}

.floating-feat {
    font-size: 1.05rem !important;
    padding: 1vh 1.5vw !important;
}

.kpi strong {
    font-size: clamp(2rem, 6vh, 4rem) !important;
}

.kpi span {
    font-size: 1.1rem !important;
}

.team-card h3 {
    font-size: 1.2rem !important;
}

.team-card .role {
    font-size: 1rem !important;
}

.btn {
    font-size: 1.15rem !important;
    padding: 2vh 2vw !important;
}

/* =============================================================
   LIVE DEMO REDESIGN
   ============================================================= */
.demo-card-live {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 60vh;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #000;
}

.demo-env-img {
    width: 100%;
    height: 45vh;
    min-height: 300px;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s;
}

.demo-card-live.playing .demo-env-img {
    opacity: 0.3;
}

.radar-zone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.radar-zone.active {
    opacity: 1;
}

.radar-left {
    left: 20%;
}

.radar-right {
    right: 20%;
}

.radar-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--blue);
    border-radius: 50%;
    animation: radarPulse 1.5s infinite ease-out;
}

.radar-ring.delay-1 {
    animation-delay: 0.75s;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.radar-label {
    margin-top: 140px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
}

.demo-fallback-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* =============================================================
   TEAM IMAGES ENLARGEMENT
   ============================================================= */
.avatar-wrap {
    width: 100% !important;
    max-width: 220px !important;
    height: 260px !important;
    margin: 0 auto 20px !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.avatar-wrap img {
    object-fit: cover !important;
    object-position: center 15% !important;
}

.avatar-wrap img.zoom-img {
    transform: scale(1.15);
    /* Zooms in to crop closer */
}

/* .slide-problem styles removed to revert to default white theme */

/* 6. Slide 13: Recognition Hero Image */
.recognition-hero {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recognition-img {
    width: 100%;
    height: auto;
    max-height: 52vh !important;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

/* =============================================================
   ============================================================
   POLISH PASS · Flat blue palette only · No gradients
   Goals:
   - Fill viewport on every screen size
   - Improve legibility
   - Add minimal blue/white/gray ornaments (flat colors only)
   - Enlarge demo video
   ============================================================
   ============================================================= */

/* Extended palette (flat) */
:root {
    --blue-50: #f5f8ff;
    --blue-100: #e6efff;
    --blue-150: #d9e6ff;
    --blue-200: #cddfff;
    --blue-300: #a3c2ff;
    --blue-700: #1856d6;
    --blue-900: #0b2a6b;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.08);
    --shadow-blue: 0 12px 30px rgba(30, 111, 255, 0.18);
}

/* ---------- Body ambience: faint flat-color blobs (no gradient) */
body::before,
body::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: var(--blue-100);
    filter: blur(110px);
    opacity: 0.45;
}

body::before {
    width: 640px;
    height: 640px;
    top: -240px;
    left: -240px;
}

body::after {
    width: 720px;
    height: 720px;
    bottom: -260px;
    right: -260px;
    opacity: 0.30;
}

/* Faint dot grid behind the deck (flat dots) */
.deck::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(var(--blue-200) 1px, transparent 1.4px);
    background-size: 28px 28px;
    opacity: 0.28;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
}

.slide {
    z-index: 1;
}

.slide>* {
    position: relative;
    z-index: 2;
}

.slide-cinema,
.slide-dark,
.slide-quote {
    isolation: isolate;
}

/* ---------- Slide canvas: fill viewport */
.slide {
    padding-top: calc(var(--topbar-h) + 2vh) !important;
    padding-bottom: 2vh !important;
    padding-left: clamp(40px, 5vw, 96px) !important;
    padding-right: clamp(40px, 5vw, 96px) !important;
}

body.is-fullscreen .slide {
    padding-top: 4vh !important;
    padding-bottom: 4vh !important;
}

/* Wider content frames on big monitors */
.hero-grid,
.two-col,
.solution-head,
.solution-grid,
.solution-main,
.hardware-bar,
.metrics-row,
.testi-row,
.diff-grid,
.biz-grid,
.phase-grid,
.team-grid,
.timeline,
.invest-wrap,
.contact-wrap,
.demo-wrap {
    max-width: min(1480px, 92vw) !important;
}

/* ---------- Typography legibility (flat colors only) */
.eyebrow {
    font-size: clamp(0.72rem, 0.7vw + 0.5rem, 0.95rem) !important;
    letter-spacing: 0.2em !important;
    padding: 6px 14px !important;
    border: 1px solid var(--blue-200) !important;
    background: var(--blue-50) !important;
    color: var(--blue) !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    margin-bottom: clamp(14px, 1.6vh, 28px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.30) !important;
    color: #fff !important;
}

.eyebrow.light::before {
    background: #fff;
}

.lead {
    color: var(--text-soft) !important;
    line-height: 1.55 !important;
}

.section-title {
    letter-spacing: -0.035em !important;
    line-height: 1.04 !important;
    color: var(--text) !important;
}

/* Section title accent — flat blue square + line */
.section-title.center::before,
.solution-head .section-title::before,
.demo-wrap .section-title::before,
.contact-wrap .section-title::before,
.slide-business .section-title::before,
.slide-market .section-title::before,
.slide-growth .section-title::before,
.slide-awards .section-title::before,
.slide-team .section-title::before,
.slide-roadmap .section-title::before,
.slide-diff .section-title::before,
.slide-impact .section-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin: 0 auto 16px;
}

/* ---------- Hero refinements (flat) */
.slide-hero .hero-grid {
    gap: clamp(40px, 6vw, 90px) !important;
    align-items: center !important;
}

.hero-text .display-title {
    font-size: clamp(3.5rem, 9vw, 9rem) !important;
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text) !important;
}

.hero-text .display-sub {
    font-size: clamp(1.15rem, 1.4vw + 0.5rem, 1.65rem) !important;
}

.hero-visual {
    position: relative;
}

/* Flat solid concentric rings around hero image */
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 12%;
    border: 1px solid var(--blue-200);
    border-radius: 50%;
    z-index: 0;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 4%;
    border: 1px dashed var(--blue-200);
    border-radius: 50%;
    z-index: 1;
    animation: spin 80s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-glasses,
.hero-logo {
    max-width: clamp(360px, 38vw, 720px) !important;
    filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.10));
    animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

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

/* Scroll cue at hero base */
.slide-hero::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 2px solid var(--border-strong);
    border-radius: 14px;
    z-index: 5;
    opacity: 0.6;
}

.slide-hero .hero-grid::after {
    content: '';
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--blue);
    border-radius: 2px;
    z-index: 6;
    animation: scrollHint 1.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scrollHint {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, 8px);
        opacity: 1;
    }
}

/* ---------- Cards: corner accent + flat hover (no gradient) */
.feat-card,
.metric-card,
.diff-point,
.testi-card,
.team-card,
.contact-card,
.kpi,
.growth-stat,
.phase,
.sub-tier {
    position: relative;
    overflow: hidden;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s var(--ease) !important;
}

.feat-card::before,
.metric-card::before,
.diff-point::before,
.team-card::before,
.contact-card::before,
.kpi::before,
.growth-stat::before,
.phase::before,
.sub-tier::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
    z-index: 3;
}

.feat-card:hover::before,
.metric-card:hover::before,
.diff-point:hover::before,
.team-card:hover::before,
.contact-card:hover::before,
.kpi:hover::before,
.growth-stat:hover::before,
.phase:hover::before,
.sub-tier:hover::before {
    opacity: 1;
}

.feat-card:hover,
.metric-card:hover,
.diff-point:hover,
.team-card:hover,
.contact-card:hover,
.kpi:hover,
.growth-stat:hover,
.phase:hover,
.sub-tier:hover {
    border-color: var(--blue) !important;
    box-shadow: var(--shadow-blue) !important;
    transform: translateY(-3px) !important;
}

/* Highlight cards: flat blue fill */
.feat-card.highlight,
.metric-card.highlight,
.growth-stat.highlight {
    background: var(--blue-50) !important;
    border-color: var(--blue-300) !important;
}

.feat-card.highlight::before,
.metric-card.highlight::before,
.growth-stat.highlight::before {
    opacity: 1;
}

/* Numbers: solid blue, no gradient text */
.metric-num,
.kpi strong,
.big-stat-num,
.circle-num,
.amount .num {
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text) !important;
    background: none !important;
    letter-spacing: -0.04em !important;
    font-weight: 800 !important;
}

.metric-card.highlight .metric-num,
.growth-stat.highlight .growth-rev,
.circle.som .circle-num,
.amount .num {
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue) !important;
}

/* ---------- Big stat: flat blue tint */
.big-stat {
    background: var(--blue-50) !important;
    border: 1px solid var(--blue-200) !important;
    border-left: 4px solid var(--blue) !important;
    border-radius: 14px !important;
    padding: clamp(20px, 2.4vh, 32px) clamp(24px, 2.4vw, 36px) !important;
    box-shadow: var(--shadow-sm) !important;
    position: relative;
}

.big-stat::before {
    content: none !important;
}

/* ---------- Bullet list polish (flat) */
.bullet-list .bullet-icon {
    background: var(--blue-50) !important;
    color: var(--blue) !important;
    border: 1px solid var(--blue-200) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
}

.bullet-list strong {
    color: var(--text) !important;
    font-weight: 700 !important;
}

/* ---------- Feature / diff / advisor icons (flat blue) */
.feat-icon,
.diff-icon,
.advisor-icon {
    background: var(--blue-50) !important;
    border: 1px solid var(--blue-200) !important;
    color: var(--blue) !important;
}

/* ---------- Hardware bar (flat) */
.hardware-bar {
    border-radius: 16px !important;
    padding: clamp(14px, 1.6vh, 22px) clamp(20px, 2vw, 30px) !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm);
}

.hardware-list {
    gap: clamp(16px, 2vw, 30px) !important;
    justify-content: center;
}

.hardware-list li i {
    color: var(--blue) !important;
    background: var(--blue-50);
    padding: 8px;
    border-radius: 8px;
    box-sizing: content-box;
    border: 1px solid var(--blue-200);
}

/* ---------- KPI row (flat) */
.kpi {
    border-radius: 14px !important;
    background: var(--blue-50) !important;
    border: 1px solid var(--blue-200) !important;
    padding: clamp(16px, 2vh, 26px) clamp(20px, 2vw, 28px) !important;
}

.kpi strong {
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue) !important;
}

/* ---------- Testimonial avatars */
.testi-card {
    border-left: 4px solid var(--blue) !important;
    padding: clamp(20px, 2.4vh, 28px) !important;
}

.testi-avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 2px solid var(--blue-200);
    background: var(--blue-50);
}

.testi-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Comparison table (flat) */
.comp-table {
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comp-row.comp-head {
    background: var(--blue-50) !important;
    color: var(--blue) !important;
}

.comp-row .brand-col {
    background: rgba(30, 111, 255, 0.04);
}

.comp-row:hover {
    background: var(--blue-50);
}

.comp-row [data-lucide="check"] {
    color: var(--blue) !important;
}

/* ---------- Subscriptions (flat) */
.sub-tier {
    border-radius: 14px !important;
    transition: all 0.25s var(--ease) !important;
}

.sub-tier:hover {
    border-color: var(--blue) !important;
}

.sub-tier ul li::before {
    background: var(--blue) !important;
}

.sub-tier.popular {
    background: var(--blue-50) !important;
    border-color: var(--blue-300) !important;
}

.popular-badge {
    background: var(--blue) !important;
    color: #fff !important;
}

/* ---------- Market circles (flat fills) */
.market-circles {
    width: clamp(360px, 32vw, 520px) !important;
    height: clamp(360px, 32vw, 520px) !important;
}

.market-circles .tam {
    background: var(--blue-50) !important;
    border-color: var(--blue-200) !important;
}

.market-circles .sam {
    background: var(--blue-100) !important;
    border-color: var(--blue-300) !important;
}

.market-circles .som {
    background: #fff !important;
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 1px var(--blue-200);
}

.market-circles .circle:hover {
    transform: scale(1.02);
}

/* ---------- Phases (flat) */
.phase {
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    border-top: 3px solid var(--blue) !important;
    padding: clamp(14px, 1.8vh, 20px) clamp(16px, 2vw, 22px) !important;
}

.phase-tag {
    color: var(--blue) !important;
    font-weight: 700 !important;
}

/* ---------- Growth chart (solid colors) */
.chart-bar {
    background: var(--blue-soft) !important;
    border-radius: 8px 8px 0 0 !important;
    box-shadow: none !important;
}

.chart-bar.highlight {
    background: var(--blue) !important;
}

.chart-bar-container {
    border-bottom: 2px solid var(--border-strong) !important;
    padding-bottom: 14px !important;
    margin-top: 28px !important;
    height: clamp(220px, 32vh, 360px) !important;
    max-width: 760px !important;
    width: 100%;
}

.chart-bar {
    width: clamp(40px, 5vw, 70px) !important;
}

.chart-bar .val {
    font-weight: 800 !important;
    color: var(--blue) !important;
    font-size: clamp(0.78rem, 0.8vw, 1rem) !important;
    top: -28px !important;
}

.chart-label {
    font-size: clamp(0.85rem, 0.9vw, 1.05rem) !important;
    color: var(--text-soft) !important;
}

/* ---------- Roadmap timeline (flat) */
.timeline::before {
    background: var(--border) !important;
    height: 2px !important;
}

.t-dot {
    box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--border) !important;
    transition: all 0.3s var(--ease);
}

.t-item.highlight .t-dot {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--blue) !important;
}

.t-date {
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    color: var(--blue) !important;
}

/* ---------- Recognition viewfinder corners (flat) */
.recognition-hero {
    padding: clamp(18px, 2vh, 30px);
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
}

.recognition-hero::before,
.recognition-hero::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    border: 2px solid var(--blue);
    border-radius: 4px;
}

.recognition-hero::before {
    top: -8px;
    left: -8px;
    border-right: 0;
    border-bottom: 0;
}

.recognition-hero::after {
    bottom: -8px;
    right: -8px;
    border-left: 0;
    border-top: 0;
}

/* ---------- Team grid: roles as flat blue chips */
.team-card {
    padding: clamp(20px, 2.4vh, 30px) clamp(16px, 1.6vw, 22px) !important;
    border-radius: 18px !important;
}

.team-card .role {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700 !important;
}

/* ---------- Investing slide (flat) */
.invest-wrap {
    gap: clamp(40px, 5vw, 80px) !important;
}

.amount .num {
    color: var(--blue) !important;
    -webkit-text-fill-color: var(--blue) !important;
    font-size: clamp(4.5rem, 9vw, 8rem) !important;
}

.invest-left .badge {
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
}

.invest-right {
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-md);
    padding: clamp(22px, 3vh, 36px) !important;
}

.alloc-bar {
    background: var(--blue-100) !important;
    height: 8px !important;
}

.alloc-bar .fill {
    background: var(--blue) !important;
    box-shadow: none !important;
}

/* ---------- Cinema overlay: solid semi-transparent dark blue (no gradient) */
.slide-cinema .cinema-overlay {
    background: rgba(11, 42, 107, 0.72) !important;
}

.cinema-content::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    margin: 22px auto 0;
}

/* ---------- Quote slide (solid overlay) */
.slide-quote .quote-overlay {
    background: rgba(11, 42, 107, 0.85) !important;
}

.quote-mark {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: clamp(4rem, 8vw, 8rem) !important;
}

.quote-tag {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: clamp(20px, 2.4vh, 30px);
}

/* ---------- Dark slide: flat black + ring + dot (no gradient) */
.slide-dark {
    background: #000 !important;
    position: relative;
}

.slide-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: darkPulse 2.6s ease-in-out infinite;
}

.slide-dark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(30, 111, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: spin 80s linear infinite;
}

@keyframes darkPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(30, 111, 255, 0.45);
    }

    50% {
        box-shadow: 0 0 0 26px rgba(30, 111, 255, 0);
    }
}

/* ---------- Audio slide ambient rings (flat outline only) */
.slide-audio {
    position: relative;
}

.slide-audio::before,
.slide-audio::after {
    content: '';
    position: absolute;
    border: 1px solid var(--blue-200);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.slide-audio::before {
    width: 60vmin;
    height: 60vmin;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: ringFade 6s ease-out infinite;
}

.slide-audio::after {
    width: 90vmin;
    height: 90vmin;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    animation: ringFade 6s ease-out infinite 2s;
}

@keyframes ringFade {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* ---------- Demo slide (live audio) */
.demo-card-live {
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-lg) !important;
    border-radius: 20px !important;
    background: #0a0f1f !important;
    max-width: min(1400px, 92vw) !important;
    max-height: none !important;
}

.demo-env-img {
    height: clamp(360px, 60vh, 620px) !important;
    min-height: 0 !important;
}

.radar-ring {
    border-color: var(--blue) !important;
}

.radar-label {
    background: var(--blue) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none !important;
}

/* ---------- Field-test video slide · big video, no clipping ---------- */
.slide-video-demo {
    padding-top: calc(var(--topbar-h) + 0.2vh) !important;
    padding-bottom: 0.5vh !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}

.slide-video-demo .demo-wrap {
    max-width: min(1700px, 96vw) !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-video-demo .eyebrow {
    margin-bottom: 0.2vh !important;
}

.slide-video-demo .section-title {
    font-size: clamp(1.4rem, 2.6vw, 2rem) !important;
    margin: 0 !important;
    line-height: 1.05 !important;
}

.slide-video-demo .section-title::before,
.slide-video-demo .section-title::after {
    content: none !important;
    display: none !important;
}

.slide-video-demo #video-status-text {
    display: none !important;
}

.slide-video-demo .demo-card-live {
    width: 100% !important;
    max-width: min(1700px, 96vw) !important;
    height: 88vh !important;
    max-height: 88vh !important;
    aspect-ratio: auto !important;
    background: #000 !important;
    margin: clamp(2px, 0.3vh, 6px) auto 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    padding: 0 !important;
}

.slide-video-demo #omar-video {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 88vh !important;
    min-height: 0 !important;
    object-fit: contain !important;
    background: #000 !important;
}

body.is-fullscreen .slide-video-demo .demo-card-live,
body.is-fullscreen .slide-video-demo #omar-video {
    height: 92vh !important;
    max-height: 92vh !important;
}

@media (max-height: 800px) {
    .slide-video-demo .demo-card-live,
    .slide-video-demo #omar-video {
        height: 80vh !important;
        max-height: 80vh !important;
    }
}

@media (max-width: 720px) {
    .slide-video-demo .demo-card-live,
    .slide-video-demo #omar-video {
        height: 62vh !important;
        max-height: 62vh !important;
    }
}

/* ---------- Topbar / Side nav / Arrows / Progress (flat) */
.topbar {
    background: rgba(255, 255, 255, 0.78) !important;
    border-bottom: 1px solid rgba(229, 231, 235, 0.7) !important;
}

.brand-mark {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
}

.nav-arrow {
    box-shadow: var(--shadow-md);
    background: #fff !important;
}

.nav-arrow:hover {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
}

.side-nav {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.progress-fill {
    background: var(--blue) !important;
    box-shadow: none !important;
}

.slide-counter {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

/* ---------- Buttons stay flat blue with shadow */
.btn.primary {
    background: var(--blue) !important;
    color: #fff !important;
    border-color: var(--blue) !important;
    box-shadow: var(--shadow-blue);
}

.btn.primary:hover {
    background: var(--blue-700) !important;
    border-color: var(--blue-700) !important;
    transform: translateY(-1px);
}

/* ---------- Contact (flat) */
.contact-card {
    border-radius: 14px !important;
    padding: clamp(16px, 2vh, 22px) clamp(18px, 2vw, 24px) !important;
}

.contact-card i {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    padding: 10px;
    border-radius: 10px;
    width: 22px !important;
    height: 22px !important;
    box-sizing: content-box;
    color: var(--blue) !important;
}

.contact-card:hover {
    background: var(--blue-50) !important;
}

.contact-foot {
    margin-top: clamp(22px, 3vh, 36px) !important;
}

/* ---------- Help modal & overview (flat) */
.modal-card {
    box-shadow: var(--shadow-lg);
}

.overview-tile {
    box-shadow: var(--shadow-sm);
}

.overview-tile:hover {
    box-shadow: var(--shadow-blue);
}

.overview-tile.active {
    background: var(--blue-50) !important;
    border-color: var(--blue) !important;
}

.overview-tile.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
}

/* ---------- Reduced motion respect */
@media (prefers-reduced-motion: reduce) {

    body::before,
    body::after,
    .hero-visual::before,
    .hero-visual::after,
    .slide-dark::before,
    .slide-dark::after,
    .slide-audio::before,
    .slide-audio::after,
    .hero-glasses,
    .hero-logo,
    .slide-hero .hero-grid::after {
        animation: none !important;
    }
}

/* ---------- Responsive tightening */
@media (max-width: 1100px) {
    .hero-visual::after {
        display: none;
    }

    .recognition-hero::before,
    .recognition-hero::after {
        display: none;
    }
}

@media (max-width: 720px) {

    body::before,
    body::after {
        opacity: 0.30;
    }

    .deck::before {
        background-size: 18px 18px;
    }

    .slide-hero::after,
    .slide-hero .hero-grid::after {
        display: none;
    }

    .slide-audio::before,
    .slide-audio::after {
        display: none;
    }
}

/* =============================================================
   ============================================================
   REVERT BLOCK · Slides 02 / 04 / 05 / 18 to previous look
   Removes recently-added polish ornaments only on these slides.
   Other slides keep the polish.
   ============================================================
   ============================================================= */

/* ---------- Slide 02 (Darkness): plain black, no ornaments */
.slide-dark {
    background: #000 !important;
}

.slide-dark::before,
.slide-dark::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    animation: none !important;
}

/* ---------- Slide 04 (Cinema · "Changing the perspective") */
/* Restore original photo overlay and remove polish decorations */
.slide-cinema .cinema-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 111, 255, 0.55) 100%) !important;
}

.slide-cinema .cinema-content::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    margin: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.slide-cinema .eyebrow,
.slide-cinema .eyebrow.light {
    display: inline-block !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    opacity: 0.85 !important;
    gap: 0 !important;
}

.slide-cinema .eyebrow::before,
.slide-cinema .eyebrow.light::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* ---------- Slide 05 (Solution · the glasses image) */
/* Remove polish ornaments AND restore original sizes / paddings */
.slide-solution {
    padding-top: calc(var(--topbar-h) + 1vh) !important;
    padding-bottom: 1vh !important;
    padding-left: 96px !important;
    padding-right: 96px !important;
}

.slide-solution .solution-head,
.slide-solution .solution-main,
.slide-solution .solution-grid,
.slide-solution .hardware-bar {
    max-width: var(--content-max) !important;
}

.slide-solution .section-title::before,
.slide-solution .section-title::after,
.slide-solution .solution-head .section-title::before,
.slide-solution .solution-head .section-title::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    margin: 0 !important;
}

.slide-solution .eyebrow {
    display: inline-block !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    gap: 0 !important;
}

.slide-solution .eyebrow::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.slide-solution .feat-card::before,
.slide-solution .feat-card::after {
    content: none !important;
    display: none !important;
}

.slide-solution .feat-icon {
    background: var(--surface) !important;
    border: 0 !important;
}

/* ---------- Slide 18 (Quote · "The essential is invisible to the eyes") */
/* Solid blue background — no photo, no overlay */
.slide-quote {
    background-image: none !important;
    background-color: #0b2a6b !important;
}

.slide-quote .quote-overlay {
    background: transparent !important;
}

.slide-quote .quote-mark {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 6rem !important;
}

.slide-quote .quote-tag {
    border-top: 0 !important;
    padding-top: 0 !important;
    margin-top: 32px !important;
}

/* ---------- Slide 10 (Market + Growth merged) ---------- */
.slide-market {
    justify-content: flex-start !important;
    padding-top: calc(var(--topbar-h) + 1vh) !important;
    padding-bottom: 2vh !important;
    overflow: visible !important;
}

.slide-market .section-title {
    margin-bottom: 0.6vh !important;
}

.market-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(20px, 3vw, 56px);
    align-items: center;
    width: 100%;
    max-width: min(1480px, 92vw);
    margin: clamp(8px, 1.2vh, 18px) auto 0;
}

.market-split-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-tamsam img {
    width: 100%;
    height: auto;
    max-height: 46vh;
    object-fit: contain;
    display: block;
}

.market-map img {
    width: 100%;
    height: auto;
    max-height: 46vh;
    object-fit: contain;
    display: block;
}

.alliances {
    width: 100%;
    max-width: min(1480px, 92vw);
    margin: clamp(10px, 1.4vh, 20px) auto 0;
    text-align: center;
}

.alliances-title {
    font-size: clamp(0.74rem, 0.85vw, 0.9rem) !important;
    color: var(--text-mute) !important;
    text-transform: uppercase;
    letter-spacing: 0.18em !important;
    font-weight: 600 !important;
    margin-bottom: clamp(6px, 0.9vh, 12px) !important;
}

.alliances-logos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.4vh, 22px) clamp(20px, 2.4vw, 36px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.alliances-logos img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: clamp(72px, 11vh, 140px);
    object-fit: contain;
    display: block;
}

@media (max-width: 1100px) {
    .market-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .market-tamsam img,
    .market-map img {
        max-height: 32vh;
    }

    .alliances-logos img {
        max-height: 70px;
    }
}

@media (max-width: 720px) {
    .alliances-logos {
        padding: 12px;
    }

    .alliances-logos img {
        max-height: 50px;
    }
}

/* ---------- Slide 10 (Differentiation) · big bold checks and X marks */
.comp-row [data-lucide="check"],
.comp-row svg.lucide-check,
.slide-diff .comp-row [data-lucide="check"] {
    width: 28px !important;
    height: 28px !important;
    color: #16a34a !important;
    stroke-width: 3.5 !important;
    background: rgba(22, 163, 74, 0.12);
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}

.comp-row [data-lucide="x"],
.comp-row svg.lucide-x,
.slide-diff .comp-row [data-lucide="x"] {
    width: 28px !important;
    height: 28px !important;
    color: #dc2626 !important;
    stroke-width: 3.5 !important;
    background: rgba(220, 38, 38, 0.10);
    border-radius: 50%;
    padding: 4px;
    box-sizing: content-box;
}

.comp-row .brand-col [data-lucide="check"],
.slide-diff .comp-row .brand-col [data-lucide="check"] {
    color: var(--blue) !important;
    background: rgba(30, 111, 255, 0.12) !important;
}

.comp-row {
    padding: 16px 20px !important;
}

.comp-head {
    background: var(--blue-50) !important;
}

/* ---------- Slide 13 (Growth) · split layout: chart left, map right */
.slide-growth {
    justify-content: center !important;
    padding-top: calc(var(--topbar-h) + 2vh) !important;
    padding-bottom: 3vh !important;
}

.growth-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 72px);
    align-items: center;
    width: 100%;
    max-width: min(1480px, 92vw);
    margin: clamp(20px, 3vh, 40px) auto 0;
}

.growth-split .chart-wrap {
    margin: 0 !important;
    width: 100%;
    padding: clamp(14px, 2vh, 26px) clamp(16px, 2vw, 28px) !important;
    display: flex;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.growth-split .chart-bar-container {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100%;
    height: clamp(280px, 50vh, 480px) !important;
}

.growth-split .chart-bar {
    width: clamp(46px, 6vw, 80px) !important;
}

.growth-split .chart-bar .val {
    font-size: clamp(0.85rem, 1vw, 1.05rem) !important;
    top: -30px !important;
}

.growth-split .chart-label {
    font-size: clamp(0.9rem, 1vw, 1.1rem) !important;
}

.growth-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-map img {
    width: 100%;
    height: auto;
    max-height: 64vh;
    object-fit: contain;
    display: block;
}

@media (max-width: 1100px) {
    .growth-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .growth-split .chart-bar-container {
        height: clamp(220px, 36vh, 320px) !important;
    }

    .growth-map img {
        max-height: 38vh;
    }
}

/* ---------- Annex slides · clean image-only layout */
.slide-annex {
    padding-top: calc(var(--topbar-h) + 0.5vh) !important;
    padding-bottom: 1vh !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}
.slide-annex .eyebrow {
    margin-bottom: 0.4vh !important;
    color: var(--text-mute) !important;
    background: var(--surface) !important;
    border-color: var(--border) !important;
}
.slide-annex .eyebrow::before { background: var(--text-mute) !important; }
.slide-annex .section-title {
    font-size: clamp(1.4rem, 2.6vw, 2.1rem) !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
}
.slide-annex .section-title::before,
.slide-annex .section-title::after {
    content: none !important;
    display: none !important;
}
.annex-frame {
    width: 100%;
    max-width: min(1500px, 96vw);
    margin: clamp(8px, 1.2vh, 18px) auto 0;
    padding: clamp(8px, 1vh, 16px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.annex-frame img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
}
.annex-frame-narrow {
    max-width: min(900px, 92vw);
}
.annex-frame-narrow img {
    max-height: 76vh;
}
@media (max-height: 800px) {
    .annex-frame img { max-height: 72vh; }
    .annex-frame-narrow img { max-height: 70vh; }
}
@media (max-width: 720px) {
    .annex-frame img,
    .annex-frame-narrow img { max-height: 58vh; }
}

/* ---------- Slide 13 (Recognition) · bigger image, no clipping */
.slide-awards {
    padding-top: calc(var(--topbar-h) + 0.5vh) !important;
    padding-bottom: 1vh !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}

.slide-awards .eyebrow {
    margin-bottom: 0.6vh !important;
}

.slide-awards .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
}

.slide-awards .section-title::before,
.slide-awards .section-title::after {
    content: none !important;
    display: none !important;
}

.recognition-hero {
    width: 100% !important;
    max-width: min(1600px, 96vw) !important;
    padding: 6px !important;
    margin: clamp(6px, 0.8vh, 12px) auto 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto;
    min-height: 0;
}

.recognition-hero::before,
.recognition-hero::after {
    width: 28px !important;
    height: 28px !important;
}

.recognition-img {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 70vh !important;
    object-fit: contain !important;
}

@media (max-height: 800px) {
    .recognition-img {
        max-height: 64vh !important;
    }
}

@media (max-width: 1100px) {
    .recognition-img {
        max-height: 56vh !important;
    }
}

/* ---------- Slide 03 (Problem) · remove blue ambient tint, faces clear */
.slide-problem {
    background: #fff !important;
    isolation: isolate;
}

.slide-problem .img-frame {
    background: #fff !important;
}

.slide-problem .img-frame img {
    filter: none !important;
}

.slide-problem .img-frame::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
}

/* ---------- Slide 04 (Cinema) · neutral dark overlay so faces are visible */
.slide-cinema .cinema-overlay {
    background: rgba(0, 0, 0, 0.42) !important;
}

.slide-cinema {
    background-color: transparent !important;
}