:root {
    --black: #000000;
    --black-opacity-10: rgba(0, 0, 0, 0.1);
    --black-opacity-70: rgba(0, 0, 0, 0.7);
    --white: #ffffff;
    --white-opacity-10: rgba(255, 255, 255, 0.1);
    --white-opacity-70: rgba(255, 255, 255, 0.7);
    --secondary-200: #e2e2e2;
    --secondary-500: rgba(0, 0, 0, 0.75);
    --secondary-800: #1a1c1c;
    --white-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);

    --background-color-primary: #FBF9F6;
    --background-color-secondary: #F5F3EF;
    --background-color-tertiary: #EDE8E2;
    --background-color-quaternary: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.09);
    --eyebrow-color: rgba(26, 26, 26, 0.50);
    --title-color: #1A1A1A;
    --subtitle-color: rgba(26, 26, 26, 0.72);
    --filter-chip-background: #CCCCCC;
    --filter-chip-transparent-background: rgba(0, 0, 0, 0.10);
    --small-button-background-secondary: #000000;
    --small-button-text: #ffffff;
    --page-background: #f6f6f6;
    --title-text-color: var(--black);
    --description-text-color: var(--secondary-500);
    --eyebrow-text-color: var(--secondary-500);
    --highlight-text-color: var(--secondary-200);
    --duration-background-color: var(--white-opacity-70);
    --duration-text-color: var(--black);
    --separation-border-color: var(--black-opacity-10);
    --stroke-color: var(--secondary-500);
    --menu-button-color: var(--secondary-800);
    --expander-background-color: var(--white-opacity-10);
    --expander-icon-color: var(--black);
    --button-color: var(--black);
    --underlined-text-color: var(--black);
    --old-button-background: var(--black-opacity-10);
    --modal-background: var(--white);
    --modal-close-button-color: var(--secondary-800);
    --modal-button-background-color: var(--black-opacity-10);
    --modal-button-text-color: var(--black-opacity-70);
    --footer-background-color: var(--white);
    --footer-text-color: var(--secondary-500);
    --gradient-color: var(--white-gradient);

    --accent-orange: #FF7F00;
}

/* Material Icons Outlined configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined[data-weight="fill"] {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Glass and Overlay Utilities */
.glass-edge { 
    border: 1px solid var(--border-color); 
}
.gradient-overlay { 
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%); 
}
.blur-overlay { 
    backdrop-filter: blur(20px); 
    background-color: rgba(250, 249, 249, 0.75); 
}

/* Smooth Scrolling (Lenis Managed) */
html {
    scroll-behavior: initial !important;
}
html.lenis {
    height: auto;
}
.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis-stopped {
    overflow: hidden;
}
.lenis-scrolling iframe {
    pointer-events: none;
}

/* WebGL Background Canvas */
#canvas-webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

/* Typography Custom Font-Face and overrides for strictly Greed Standard */
@font-face {
    font-family: 'Greed Standard';
    src: local('Greed Standard'),
         local('GreedStandard'),
         url('fonts/GreedStandardVF.woff2') format('woff2-supports-variations'),
         url('fonts/GreedStandardVF.woff2') format('woff2'),
         url('fonts/GreedStandardVF.woff') format('woff'),
         url('fonts/GreedStandardVF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Greed Standard';
    src: local('Greed Standard Italic'),
         local('GreedStandard-Italic'),
         url('fonts/GreedStandardVFItalic.woff2') format('woff2-supports-variations'),
         url('fonts/GreedStandardVFItalic.woff2') format('woff2'),
         url('fonts/GreedStandardVFItalic.woff') format('woff'),
         url('fonts/GreedStandardVFItalic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* Greed Standard for all structural/display elements */
body, html, h1, h2, h3, h4, h5, h6, button, a,
span:not(.material-symbols-outlined),
div:not(.material-symbols-outlined),
select, input, textarea {
    font-family: 'Greed Standard', serif !important;
    font-style: normal !important;
}

/* Lora for body copy — set AFTER the above so it wins on prose elements */
p, li, .font-body-md, .font-body-lg, details > div, .macc-desc, .faq-answer {
    font-family: 'Lora', Georgia, 'Times New Roman', serif !important;
    font-style: normal !important;
}

/* Variable font axis tuning for Greed Standard */
h1, .text-headline-xl {
    font-variation-settings: 'wght' 740;
}
h2, .text-headline-lg {
    font-variation-settings: 'wght' 680;
}
h3, .text-headline-md, .text-headline-sm {
    font-variation-settings: 'wght' 620;
}
/* Eyebrow / label text — lighter, wider tracking */
.text-label-md, .font-label-md {
    font-variation-settings: 'wght' 580;
}
/* Step numbers — ultra bold */
.step-number {
    font-variation-settings: 'wght' 800;
}
/* Stat numbers — maximum weight */
.text-\[88px\], .text-\[104px\] {
    font-variation-settings: 'wght' 820;
}

/* Theme Color transitions */
body {
    background-color: var(--background-color-primary);
    color: var(--title-color);
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Premium Buttons Styling */
.btn-premium-white {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    border-radius: 34px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Greed Standard' !important;
    font-style: normal !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    outline: none;
    user-select: none;
}
.btn-premium-white:hover {
    background: #000000;
    color: #FFFFFF;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.btn-premium-white:active {
    transform: translateY(0);
}

.btn-premium-black {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    border-radius: 34px;
    background: #000000;
    border: 1px solid #000000;
    font-family: 'Greed Standard' !important;
    font-style: normal !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    outline: none;
    user-select: none;
}
.btn-premium-black:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}
.btn-premium-black:active {
    transform: translateY(0);
}

/* Nav Transition scroll indicators */
#main-nav {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
    background-color: rgba(250, 249, 249, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}
#main-nav.scrolled .brand-logo {
    transform: scale(0.95);
}
#main-nav .brand-logo {
    transition: transform 0.4s ease;
}

/* Interactive Card Elevate Hover */
.interactive-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
    border: 1px solid var(--border-color);
}
.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.25);
    background-color: var(--background-color-quaternary);
}

/* Clip Path Reveals */
.reveal-clip {
    clip-path: inset(0 100% 0 0);
    transition: none;
}

/* Custom overflow-hidden reveal masks for letters */
.title-reveal-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}
.title-reveal-char {
    display: inline-block;
    transform: translateY(100%);
    will-change: transform;
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
    .reveal-clip {
        clip-path: none !important;
    }
    .title-reveal-char {
        transform: none !important;
    }
    .interactive-card:hover {
        transform: none;
    }
}

/* Custom living torah button size */
.btn-living-torah {
    width: 205px !important;
    height: 39px !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 39px !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 34px !important;
    box-sizing: border-box !important;
}

/* Pulsing Map Nodes */
.pulsing-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}
.node-dot {
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-orange);
}
.node-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-node-scale 1.8s infinite cubic-bezier(0.25, 0, 0, 1);
    pointer-events: none;
}
@keyframes pulse-node-scale {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
.node-tooltip {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 9999px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.pulsing-node:hover .node-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Modal Window Classes */
#reservation-modal.active-modal {
    opacity: 1 !important;
    pointer-events: auto !important;
}
#reservation-modal.active-modal #modal-card {
    transform: scale(1) !important;
}

/* ===========================
   Visual-First Benefits Section
   =========================== */
.benefits-visual {
    position: relative;
    overflow: hidden;
}
.benefit-story-card {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-story-card:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 127, 0, 0.45) !important;
    transform: translateY(-4px);
}

/* ===========================
   Stats Number Carousel
   =========================== */
.stat-carousel-card {
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.55s ease,
                border-color 0.55s ease,
                box-shadow 0.55s ease,
                background-color 0.4s ease;
}
.stat-big-number {
    font-size: 80px;
    line-height: 1;
    transition: font-size 0.55s cubic-bezier(0.16, 1, 0.3, 1), color 0.55s ease;
    color: var(--title-color);
}
.stat-card-active .stat-big-number {
    font-size: 112px;
    color: var(--accent-orange);
}
.stat-card-active {
    transform: scale(1.06) !important;
    border-color: rgba(255, 127, 0, 0.22) !important;
    box-shadow: 0 24px 60px -12px rgba(255, 127, 0, 0.13), 0 6px 20px -4px rgba(0,0,0,0.06) !important;
    background-color: var(--background-color-quaternary) !important;
    opacity: 1 !important;
}
.stat-card-inactive {
    opacity: 0.5;
    transform: scale(0.96) !important;
}
.stat-dot {
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.stat-dot.active {
    background-color: var(--accent-orange) !important;
    transform: scale(1.4);
}
@media (max-width: 640px) {
    .stat-big-number { font-size: 60px; }
    .stat-card-active .stat-big-number { font-size: 80px; }
    .stats-carousel-track {
        justify-content: flex-start !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-left: calc(50vw - 130px) !important;
        padding-right: calc(50vw - 130px) !important;
    }
    .stats-carousel-track::-webkit-scrollbar { display: none; }
    .stat-carousel-card { scroll-snap-align: center; }
}

/* ===========================
   Cinematic Hero
   =========================== */
.hero-section {
    background-color: #FAF8F5; /* Light warm background color initially */
}
.hero-video-wrapper {
    overflow: hidden;
    pointer-events: none;
    opacity: 1; /* Visible right away on load */
    transform: scale(1);
}
.hero-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 30%;
}
.hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0.05) 100%);
}
/* Hero text — sits directly on the gradient scrim */
.hero-text-overlay {
    /* positional classes applied via Tailwind */
}
.hero-title-shadow {
    text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.35);
}
.hero-text-shadow {
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
/* Hero primary button — solid white */
.btn-hero-primary {
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 34px;
    font-family: 'Greed Standard', serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-primary:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
/* Hero ghost button — white outline */
.btn-hero-ghost {
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 34px;
    font-family: 'Greed Standard', serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-ghost:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.1);
}

/* ===========================
   Pinned How It Works (TV Mockup)
   =========================== */
.howitworks-section {
    overflow: visible;
}
.tv-mockup-container {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
@media (max-width: 1023px) {
    .tv-mockup-container {
        position: relative !important;
        top: auto !important;
        align-self: center !important;
        width: 100% !important;
        max-width: 500px;
        margin-top: 48px;
    }
}
.tv-frame {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(255,255,255,0.04);
}
.tv-screen {
    background: #0a0a0a;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}
.tv-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity;
}
.tv-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 4px
    );
    pointer-events: none;
    border-radius: 10px;
}
.tv-stand-neck {
    width: 48px;
    height: 28px;
    background: linear-gradient(180deg, #222 0%, #333 100%);
    margin: 0 auto;
    clip-path: polygon(25% 0%, 75% 0%, 90% 100%, 10% 100%);
}
.tv-stand-base {
    width: 120px;
    height: 6px;
    background: linear-gradient(180deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 3px;
    margin: 0 auto;
}
.howitworks-step {
    padding-top: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: opacity 0.4s ease;
}
.howitworks-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.howitworks-step.step-dimmed {
    opacity: 0.35;
}
.step-number {
    font-size: 88px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent-orange);
    opacity: 0.12;
    margin-bottom: 20px;
    transition: opacity 0.4s ease;
}
.howitworks-step.step-active .step-number {
    opacity: 0.18;
}

/* ===========================
   SplitType Line Mask
   =========================== */
.st-line-mask {
    display: block;
    overflow: hidden;
}
.st-line-mask .line {
    display: block;
    will-change: transform;
}

/* ===========================
   Manifesto Section
   =========================== */
.manifesto-section {
    background: var(--background-color-primary);
    overflow: clip;
}
.manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    min-height: 110vh;
    padding: 128px 0 80px;
}
.manifesto-text-block {
    position: sticky;
    top: 120px;
}
.manifesto-gold {
    color: #B58A3F;
}
.manifesto-visual-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 8px;
    padding-bottom: 120px;
}
.media-card {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    will-change: transform;
}
.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out, opacity 0.5s ease;
    display: block;
}

/* ===========================
   Environments — Sticky Text + Asymmetric Parallax Columns
   =========================== */
.env-section {
    background: var(--background-color-primary);
}
.env-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}
.env-text-side {
    width: 42%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}
.env-images-side {
    flex: 1;
    display: flex;
    gap: 14px;
    min-width: 0;
}
.env-img-track {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.env-img-track--offset {
    margin-top: 110px;
}
.env-img-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    will-change: transform;
}
@media (max-width: 1024px) {
    .env-layout { flex-direction: column; gap: 40px; padding-top: 60px; padding-bottom: 60px; }
    .env-text-side { width: 100%; position: relative; top: 0; }
    .env-images-side { width: 100%; }
    .env-img-track--offset { margin-top: 40px; }
    .env-img-item { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
    .env-images-side { display: none; }
}
.media-card:hover img {
    transform: scale(1.05);
}

/* ===========================
   Manifesto — Team Accordion
   =========================== */
.manifesto-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 4px;
}
.macc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.macc-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    outline: none;
}
.macc-trigger:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    border-radius: 4px;
}
.macc-name {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.macc-item.macc-open .macc-name {
    color: #1A1A1A;
}
.macc-icon {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.35);
    flex-shrink: 0;
    transition: color 0.22s ease;
}
.macc-item.macc-open .macc-icon {
    color: var(--accent-orange);
}
.macc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.macc-item.macc-open .macc-body {
    grid-template-rows: 1fr;
}
.macc-body-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 1.6s ease;
}
.macc-item.macc-open .macc-body-inner {
    padding-bottom: 22px;
}
.macc-role {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 8px;
}
.macc-desc {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.58);
    line-height: 1.7;
    max-width: 380px;
}

/* ── Progress Accordion (WII section) ────────────────────── */
.prog-accordion {
    border-top: 1px solid rgba(0,0,0,0.08);
}
.prog-step {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
}
.prog-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.prog-header:focus-visible {
    outline: 2px solid var(--accent-orange, #FF7F00);
    outline-offset: 2px;
    border-radius: 4px;
}
.prog-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(26,26,26,0.25);
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.prog-title {
    font-size: 17px;
    font-weight: 600;
    color: rgba(26,26,26,0.35);
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.prog-step.active .prog-num {
    color: var(--accent-orange, #FF7F00);
}
.prog-step.active .prog-title {
    color: #1A1A1A;
}
.prog-body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.prog-body > p {
    overflow: hidden;
    min-height: 0;
}
.prog-step.active .prog-body {
    grid-template-rows: 1fr;
}
.prog-body-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.45s ease;
}
.prog-step.active .prog-body-inner {
    padding-bottom: 18px;
}
.prog-desc {
    font-size: 14px;
    color: rgba(26,26,26,0.58);
    line-height: 1.7;
}
.prog-track {
    height: 2px;
    background: rgba(0,0,0,0.07);
    overflow: hidden;
}
.prog-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-orange, #FF7F00);
    transition: none;
}
.prog-step.active .prog-fill {
    width: 100%;
    transition: width 5s linear;
}

/* WII4 inline list */
.wii4-inline-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    line-height: 1.6;
}
.wii4-sep {
    font-size: 8px !important;
    color: var(--accent-orange, #FF7F00);
    opacity: 0.7;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
        padding: 64px 0 64px;
    }
    .manifesto-text-block {
        position: relative;
        top: auto;
    }
    .manifesto-visual-block {
        padding-bottom: 0;
        gap: 20px;
    }
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {

    /* Testimonials Mobile Carousel Override */
    .testimonials-pin-container {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        padding-bottom: 24px !important;
        scrollbar-width: none; /* Hide scrollbar for clean visual */
    }
    .testimonials-pin-container::-webkit-scrollbar {
        display: none;
    }
    .testimonials-slider {
        display: flex !important;
        gap: 16px !important;
        transform: none !important;
        width: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .testimonials-slider > div {
        scroll-snap-align: center !important;
        flex-shrink: 0 !important;
        width: 85vw !important;
        min-width: 290px !important;
        max-width: 420px !important;
        height: auto !important;
        min-height: 480px !important;
    }

    /* Typography */
    .text-headline-xl { font-size: 34px !important; line-height: 1.08 !important; letter-spacing: -0.02em !important; }
    .text-headline-lg { font-size: 26px !important; line-height: 1.12 !important; letter-spacing: -0.02em !important; }
    .text-headline-md { font-size: 20px !important; line-height: 1.2 !important; }

    /* Tailwind arbitrary sizes used in stats */
    .text-\[88px\]  { font-size: 52px !important; line-height: 1 !important; }
    .text-\[104px\] { font-size: 52px !important; line-height: 1 !important; }

    /* Section spacing */
    .py-section-gap { padding-top: 64px !important; padding-bottom: 64px !important; }
    .pt-section-gap { padding-top: 64px !important; }
    .pb-section-gap { padding-bottom: 64px !important; }

    /* Hero: ensure enough top padding for nav */
    .hero-text { padding-top: 132px !important; }

    /* How It Works steps */
    .howitworks-step { padding-top: 44px !important; padding-bottom: 44px !important; }
    .step-number { font-size: 56px !important; }

    /* Testimonial cards: remove fixed height to avoid clipping */
    .h-\[620px\] { height: auto !important; min-height: 460px !important; }

    /* Mission detail panel: stack image below text on small screens */
    #benefit-detail-panel { gap: 20px !important; }

    /* Stats section dividers (md:divide-x won't apply on mobile, add top borders instead) */
    .md\:px-16 { padding-top: 32px !important; border-top: 1px solid rgba(0,0,0,0.08) !important; }
    .md\:pl-16 { padding-top: 32px !important; border-top: 1px solid rgba(0,0,0,0.08) !important; }

    /* CTA / button spacing in hero */
    .hero-text .flex.flex-wrap { gap: 12px !important; }

    /* Nav height */
    #main-nav .h-20 { height: 64px !important; }

    /* Page-margin spacing on mobile already handled via px-4 Tailwind class */
}

/* Extra-small phones */
@media (max-width: 479px) {
    .text-headline-xl { font-size: 28px !important; }
    .text-headline-lg { font-size: 22px !important; }
    .text-\[88px\], .text-\[104px\] { font-size: 42px !important; }
    .text-\[36px\] { font-size: 22px !important; }

    /* Smaller buttons on very small screens */
    .btn-premium-black, .btn-premium-white {
        font-size: 14px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

/* ===========================
   Mobile Navigation Menu
   =========================== */
#mobile-menu {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu.pointer-events-auto {
    pointer-events: auto;
}
.mobile-nav-link {
    display: block;
    font-family: 'Greed Standard', serif !important;
    font-variation-settings: 'wght' 620;
    text-decoration: none;
    color: var(--title-color);
    transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-nav-link:hover {
    color: var(--accent-orange);
}
/* Hamburger lines — base */
#mobile-menu-btn .ham-line {
    display: block;
    border-radius: 2px;
    background-color: var(--title-color);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    transform-origin: center center;
}
/* Animate to X when .ham-open class added */
#mobile-menu-btn.ham-open .ham-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
#mobile-menu-btn.ham-open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#mobile-menu-btn.ham-open .ham-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===========================
   Interactive Pricing Toggle
   =========================== */
.pricing-toggle-btn {
    transition: background-color 0.2s ease-in-out;
}
.pricing-toggle-thumb {
    transition: transform 0.2s ease-in-out;
}

/* ═══════════════════════════════════════
   Gimmel Tammuz — Sale Glass Bar
   ═══════════════════════════════════════ */
.gt-sale-section {
    background: transparent;
}
.gt-sale-bg {
    background: linear-gradient(110deg, #CC5500 0%, #FF7F00 38%, #FF9A20 62%, #E06000 100%);
}
.gt-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.gt-orb-1 {
    width: 480px;
    height: 480px;
    top: -180px;
    left: -80px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    animation: gt-orb-drift 8s ease-in-out infinite alternate;
}
.gt-orb-2 {
    width: 360px;
    height: 360px;
    bottom: -120px;
    right: -40px;
    background: radial-gradient(circle, rgba(255,220,80,0.22) 0%, transparent 70%);
    animation: gt-orb-drift 11s ease-in-out infinite alternate-reverse;
}
@keyframes gt-orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(20px, 12px) scale(1.06); }
}
.gt-glass-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0) 60%, rgba(0,0,0,0.06) 100%);
    backdrop-filter: blur(0.5px);
}

/* 50% badge */
.gt-badge {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 20px;
    padding: 14px 18px;
    text-align: center;
    min-width: 80px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 32px rgba(0,0,0,0.12);
}
.gt-badge-pct {
    font-family: 'Greed Standard', serif !important;
    font-variation-settings: 'wght' 820;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.gt-badge-off {
    font-family: 'Greed Standard', serif !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 3px;
}

/* Live pulsing dot */
.gt-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    animation: gt-live-pulse 1.8s ease-in-out infinite;
}
@keyframes gt-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(255,255,255,0); }
}

/* CTA button — white glass pill */
.gt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    color: #1A1A1A;
    font-family: 'Greed Standard', serif !important;
    font-variation-settings: 'wght' 580;
    font-size: 15px;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    padding: 13px 24px;
    border-radius: 34px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.gt-cta-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}
.gt-cta-btn:active {
    transform: translateY(0);
}

/* amCharts map tooltip — force white text via direct SVG selector */
#world-map-container text,
#world-map-container svg text {
    fill: #ffffff !important;
}

/* ===========================
   Where It's Used Grid
   =========================== */
.environment-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.environment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 127, 0, 0.3) !important;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.05);
}

/* ===========================
   Typographic Staff Initials Badges & Shapes
   =========================== */
.staff-initials-badge {
    background: linear-gradient(135deg, #F9F7F4 0%, #ECE7E1 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--accent-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.shape-circle {
    border-radius: 50% !important;
}
.shape-squircle {
    border-radius: 16px !important;
}
.shape-leaf {
    border-radius: 20px 4px 20px 4px !important;
}

.staff-slide {
    will-change: opacity, transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    border-radius: 24px;
    padding: 24px;
}
.staff-slide:hover {
    background-color: rgba(0, 0, 0, 0.015);
}
.staff-slide:hover .staff-initials-badge {
    transform: rotate(180deg) scale(1.08) !important;
    border-radius: 50% !important; /* morph to circle on hover */
    background: var(--accent-orange) !important;
    color: white !important;
    border-color: var(--accent-orange) !important;
}

#pricing-badge-initiative {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================
   Hero Background Slide Cycling
   =========================== */
.hero-bg-slide {
    opacity: 0;
    transition: opacity 1.6s ease;
}
.hero-bg-slide-active {
    opacity: 1;
}

/* ===========================
   Locations Ticker — Around the World
   =========================== */
.locations-ticker-wrapper {
    /* relative is set inline via Tailwind */
}

/* Scroll-reveal initial state */
.locations-ticker-wrapper.ticker-hidden {
    opacity: 0;
    transform: translateY(18px);
}

.ticker-row {
    overflow: hidden;
    padding: 11px 0;
    border-top: none;
    border-bottom: none;
    background: transparent;
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.ticker-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

@keyframes ticker-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes ticker-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.ticker-track-left {
    animation: ticker-scroll-left 200s linear infinite;
}

/* Pause on hover */
.locations-ticker-wrapper:hover .ticker-track-left {
    animation-play-state: paused;
}

/* Individual location items */
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    cursor: default;
    white-space: nowrap;
    user-select: none;
}

.ticker-item span:last-child {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.36);
    transition: color 0.22s ease;
}

.ticker-item:hover span:last-child {
    color: rgba(26, 26, 26, 0.82);
}

.ticker-sep {
    color: var(--accent-orange);
    font-size: 5px;
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.ticker-item:hover .ticker-sep {
    opacity: 1;
    transform: scale(1.4) rotate(45deg);
}

/* Edge fade overlays */
.ticker-fade-left,
.ticker-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}
.ticker-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--background-color-primary) 0%, transparent 100%);
}
.ticker-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--background-color-primary) 0%, transparent 100%);
}

/* ===========================
   Global Ticker Tooltip (portal)
   =========================== */
#ticker-tooltip {
    position: fixed;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 7px 13px 7px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(7px) translateX(-50%);
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22), 0 1px 4px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    top: 0;
    left: 0;
}
#ticker-tooltip.visible {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}
#ticker-tooltip-flag {
    font-size: 15px;
    line-height: 1;
    display: inline-block;
}
.ticker-tooltip-arrow {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track-left {
        animation: none !important;
    }
    .locations-ticker-wrapper.ticker-hidden {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===========================
   World Map Container (amCharts)
   =========================== */
.world-map-container {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--background-color-secondary);
    margin-bottom: 56px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
    .world-map-container { height: 280px; margin-bottom: 36px; }
}

/* ===========================
   World Installations — Full Page
   =========================== */

/* Live pulse dot in header */
.world-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-orange);
    flex-shrink: 0;
    animation: world-live-pulse 2s ease-in-out infinite;
}
@keyframes world-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,127,0,0.4); }
    50%       { opacity: 0.75; box-shadow: 0 0 0 5px rgba(255,127,0,0); }
}

/* 5-column responsive grid */
.world-regions-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.5fr 0.85fr 1.1fr 0.85fr;
    gap: 0 40px;
    align-items: start;
}

.world-region {
    padding-bottom: 40px;
}

/* Region header */
.world-region-header {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.world-region-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.65);
    flex: 1;
    min-width: 0;
}
.world-region-count {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(255, 127, 0, 0.09);
    padding: 2px 7px;
    border-radius: 99px;
    flex-shrink: 0;
}

/* Location list */
.world-region-locs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* Location button */
.world-loc-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.45);
    cursor: pointer;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
    outline: none;
    font-family: inherit;
    line-height: 1.4;
    letter-spacing: 0.01em;
    position: relative;
}
.world-loc-btn:hover,
.world-loc-btn:focus-visible {
    color: #1a1a1a;
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateX(3px);
}
.world-loc-btn.wlb-active {
    color: var(--accent-orange);
    background-color: rgba(255, 127, 0, 0.06);
}

/* ===========================
   World Location Card Popup
   =========================== */
#world-loc-card {
    position: fixed;
    z-index: 9998;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    transition: opacity 0.2s ease, transform 0.26s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 190px;
    max-width: 260px;
    top: 0;
    left: 0;
}
#world-loc-card.visible {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
}
.wlc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.wlc-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.wlc-sub {
    font-size: 11px;
    color: rgba(26, 26, 26, 0.45);
    font-weight: 500;
}
.wlc-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
}
.wlc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
    animation: wlc-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes wlc-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
    50%       { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .world-regions-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px 32px;
    }
}
@media (max-width: 767px) {
    .world-regions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
    .world-loc-btn {
        font-size: 12px;
        padding: 6px 8px;
    }
    #world-loc-card {
        min-width: 180px;
        padding: 13px 16px;
    }
    .wlc-flag { font-size: 26px; }
    .wlc-name { font-size: 13px; }
}
@media (max-width: 479px) {
    .world-regions-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Announcement Bar
   =========================== */
.announcement-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}
.announcement-text {
    color: rgba(255,255,255,0.9);
}
@media (max-width: 767px) {
    .announcement-text {
        font-size: 14px;
    }
}
.announcement-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #FF7F00;
    white-space: nowrap;
    font-weight: 600;
}

@media (min-width: 768px) {
    .announcement-inner {
        flex-wrap: nowrap;
        font-size: 17px;
        padding: 13px 32px;
    }
}

/* ===========================
   Photo Strip — Static (no animation)
   =========================== */
#photo-ticker-row {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#photo-ticker-row::-webkit-scrollbar { display: none; }

.ticker-photo-static {
    animation: none !important;
    display: flex !important;
    width: max-content;
}
.ticker-photo-static .ticker-set + .ticker-set {
    display: none !important;
}

/* ===========================
   Reveal-on-scroll — show immediately (no GSAP fade in)
   =========================== */
.reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* ===========================
   Section spacing — reduced
   =========================== */
.py-section-gap {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}
.pt-section-gap { padding-top: 72px !important; }
.pb-section-gap { padding-bottom: 72px !important; }

@media (max-width: 767px) {
    .py-section-gap { padding-top: 48px !important; padding-bottom: 48px !important; }
    .pt-section-gap { padding-top: 48px !important; }
    .pb-section-gap { padding-bottom: 48px !important; }
}

/* ===========================
   WII Section — Two-Column: intro | features
   =========================== */
.wii-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding-top: 72px;
    padding-bottom: 72px;
}
.wii-intro-side {
    width: 40%;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}
.wii-features-side {
    flex: 1;
    min-width: 0;
}
@media (max-width: 1024px) {
    .wii-layout {
        flex-direction: column;
        gap: 40px;
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .wii-intro-side {
        width: 100%;
        position: relative;
        top: 0;
    }
}

/* ===========================
   SSO Sale Card — warm, welcoming
   =========================== */
.sso-sale-card {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E5 50%, #FFF9F2 100%);
    border: 1.5px solid rgba(255,127,0,0.18);
    box-shadow: 0 4px 32px rgba(255,127,0,0.08), 0 1px 6px rgba(0,0,0,0.04);
    color: #1A1A1A;
}
.sso-badge-col {
    background: rgba(255,127,0,0.08);
    border-right: 1.5px solid rgba(255,127,0,0.14);
    min-width: 140px;
    text-align: center;
}
.sso-pct {
    font-family: 'Greed Standard', serif !important;
    font-variation-settings: 'wght' 820;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #FF7F00;
}
.sso-off-label {
    font-family: 'Greed Standard', serif !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,127,0,0.6);
    margin-top: 2px;
}
.sso-months {
    font-size: 11px;
    font-weight: 600;
    color: rgba(26,26,26,0.4);
    margin-top: 4px;
    letter-spacing: 0.05em;
}
.sso-divider {
    width: 1.5px;
    align-self: stretch;
    background: rgba(255,127,0,0.14);
    flex-shrink: 0;
}
.sso-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #FF7F00;
    margin-bottom: 8px;
}
.sso-body {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(26,26,26,0.65);
}
.sso-foot {
    font-size: 13px;
    font-weight: 600;
    color: rgba(26,26,26,0.45);
    font-style: italic;
}
.sso-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF7F00;
    color: #fff;
    font-family: 'Greed Standard', serif !important;
    font-variation-settings: 'wght' 580;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 34px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255,127,0,0.3);
}
.sso-cta-btn:hover {
    background: #e06c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,127,0,0.35);
}
@media (max-width: 767px) {
    .sso-badge-col {
        border-right: none;
        border-bottom: 1.5px solid rgba(255,127,0,0.14);
        width: 100%;
        padding: 20px;
    }
    .sso-pct { font-size: 48px; }
}

/* ===========================
   WhatsApp Floating Widget
   =========================== */
#wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

#wa-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
    flex-shrink: 0;
}
#wa-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.18);
}
#wa-fab:active { transform: scale(0.97); }

#wa-panel {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15), 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.28s;
    transform-origin: bottom right;
}
#wa-panel.wa-panel-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
}

.wa-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #25D366;
    color: #fff;
}
.wa-panel-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-panel-info { flex: 1; min-width: 0; }
.wa-panel-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.wa-panel-status {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1px;
}
.wa-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}
.wa-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}
.wa-close-btn:hover { background: rgba(0,0,0,0.1); color: #fff; }

.wa-panel-body {
    padding: 16px;
    background: #f0f0f0;
    min-height: 80px;
}
.wa-bubble {
    background: #fff;
    border-radius: 12px 12px 12px 0;
    padding: 10px 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    max-width: 240px;
}
.wa-bubble p {
    font-family: 'Lora', Georgia, serif !important;
    font-size: 13px;
    color: #1a1a1a;
    line-height: 1.55;
    margin: 0;
}

.wa-panel-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.wa-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25D366;
    color: #fff;
    border-radius: 34px;
    padding: 11px 16px;
    font-family: 'Greed Standard', serif !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.22s ease, transform 0.22s ease;
    cursor: pointer;
}
.wa-send-btn:hover { background: #1eb858; transform: translateY(-1px); }

@media (max-width: 479px) {
    #wa-widget { bottom: 16px; right: 16px; }
    #wa-panel { width: min(300px, calc(100vw - 32px)); right: 0; }
}

