/* ==========================================================================
   NA CHLEBA - CORE STYLE SYSTEM & PREMIUM AESTHETICS
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --cream: #F1ECE5;         /* Warm Beige Canvas */
    --charcoal: #151413;      /* Premium Dark Charcoal */
    --accent: #F8FF00;        /* TikTok Mukbang Highlight Yellow */
    --accent-dark: #d5db00;   
    --gray-medium: #818181;   /* Tertiary Chip Neutral */
    --white: #FFFFFF;
    --card-shadow: 0 16px 48px rgba(21, 20, 19, 0.08);
    --font-sans: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-code: 'Google Sans Code', 'Courier New', Courier, monospace;
}

/* Global Reset & Base Rules */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--cream);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Cursor Sticker Explosion Elements */
.click-particle {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    animation: particleFly 1.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes particleFly {
    0% {
        transform: translate(-50%, -50%) translate(0, 0) rotate(0deg) scale(0.2);
        opacity: 1;
    }
    18% {
        transform: translate(-50%, -50%) translate(calc(var(--tx) * 0.35), calc(var(--ty) * 0.35)) rotate(calc(var(--rot) * 0.35)) scale(1);
        opacity: 1;
    }
    68% {
        transform: translate(-50%, -50%) translate(calc(var(--tx) * 0.75), calc(var(--ty) * 0.75)) rotate(calc(var(--rot) * 0.75)) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
        opacity: 0;
    }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    display: flex;
    align-items: center;
}

/* Scrolled Nav Style with blur */
.nav-bar.scrolled {
    height: 80px;
    background-color: rgba(241, 236, 229, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(21, 20, 19, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: rotate(15deg) scale(1.05);
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--charcoal);
    letter-spacing: 0;
    position: relative;
    padding: 8px 0;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--charcoal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background-color: var(--white);
    color: var(--charcoal);
    border: 0;
    padding: 22.5px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.tiktok-nav-link {
    width: 64px;
    height: 64px;
    background-color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tiktok-nav-link:hover {
    background-color: var(--accent);
    transform: rotate(-10deg) scale(1.05);
}

.tiktok-nav-link img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.tiktok-nav-link:hover img {
    filter: invert(1); /* Flip color to charcoal */
}

/* Hamburger button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--charcoal);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   MOBILE OVERLAY NAV
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--charcoal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0 24px;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-link {
    font-size: 32px;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-btn {
    background-color: var(--cream);
    color: var(--charcoal);
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 16px;
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.mobile-tiktok-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

.mobile-tiktok-link img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Body scroll lock */
body.nav-active {
    overflow: hidden;
}

body.nav-active .nav-bar,
body.nav-active .nav-bar.scrolled {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Animated Hamburger Cross state */
.hamburger-btn.active .hamburger-line.line-1 {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--cream);
}

.hamburger-btn.active .hamburger-line.line-2 {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--cream);
}

/* ==========================================================================
   INTRO SECTION
   ========================================================================== */
.section-intro {
    height: 100vh;
    min-height: 800px;
    width: 100%;
    position: relative;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 96px;
}

/* Giant background outline brand logo */
.bg-outline-logo {
    position: absolute;
    left: 32px;
    bottom: 24px;
    width: min(1675px, calc(100% - 72px));
    height: auto;
    max-height: 834px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    transform: translateY(50px);
    animation: fadeSlideUpLogo 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bg-outline-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeSlideUpLogo {
    from {
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Floating Photo Grid */
.floating-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-photo {
    position: absolute;
    pointer-events: auto;
    border-radius: clamp(16px, 3vw, 32px);
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    will-change: transform, translate;
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    translate: 0 0;
    animation:
        photoEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--enter-delay, 0s) forwards,
        photoBob var(--bob-duration, s) ease-in-out var(--bob-delay, 0s) infinite;
}

@keyframes photoEnter {
    to {
        opacity: var(--photo-opacity, 1);
        transform: scale(1) translateY(0);
    }
}

.floating-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes photoBob {
    0%, 100% {
        translate: 0 0;
        rotate: var(--bob-rotate-start, -0.7deg);
    }
    50% {
        translate: 0 var(--bob-distance, -10px);
        rotate: var(--bob-rotate-end, 0.9deg);
    }
}

/* Warm food-toned gradient placeholders (until real photos provided) */
.photo-placeholder {
    background: radial-gradient(
        ellipse at 40% 40%,
        hsl(var(--ph-hue, 28), 65%, 72%) 0%,
        hsl(var(--ph-hue, 28), 45%, 52%) 60%,
        hsl(calc(var(--ph-hue, 28) - 15), 35%, 32%) 100%
    );
}

.floating-photo:hover {
    z-index: 10;
}

.photo-1 { /* Sandwich */
    top: 15%;
    left: 19%;
    width: clamp(150px, 10.5vw, 200px);
    height: clamp(200px, 14vw, 266px);
    --bob-duration: 7.4s;
    --bob-delay: -1.2s;
    --bob-distance: -11px;
    --bob-rotate-start: -0.6deg;
    --bob-rotate-end: 0.8deg;
}

.photo-2 { /* Main */
    top: 52%;
    left: 38%;
    width: clamp(150px, 10.5vw, 201px);
    height: clamp(224px, 15.6vw, 300px);
    --bob-duration: 8.2s;
    --bob-delay: -3.1s;
    --bob-distance: -9px;
    --bob-rotate-start: 0.5deg;
    --bob-rotate-end: -0.7deg;
}

.photo-3 { /* Rueben */
    top: 20%;
    right: -20px;
    width: clamp(150px, 10.5vw, 201px);
    height: clamp(224px, 15.6vw, 300px);
    --bob-duration: 6.8s;
    --bob-delay: -2s;
    --bob-distance: -12px;
    --bob-rotate-start: 0.7deg;
    --bob-rotate-end: -0.8deg;
}

.photo-4 { /* Jalapeno bread */
    top: 42%;
    right: 17%;
    width: clamp(130px, 9vw, 174px);
    height: clamp(168px, 11.7vw, 224px);
    --photo-opacity: 0.7;
    --bob-duration: 7.8s;
    --bob-delay: -4.4s;
    --bob-distance: -8px;
    --bob-rotate-start: -0.5deg;
    --bob-rotate-end: 0.6deg;
}

.photo-6 { /* bread */
    top: 44%;
    left: 5%;
    width: clamp(150px, 10.4vw, 199px);
    height: clamp(199px, 13.75vw, 264px);
    --bob-duration: 7.1s;
    --bob-delay: -2.8s;
    --bob-distance: -10px;
    --bob-rotate-start: 0.6deg;
    --bob-rotate-end: -0.7deg;
}

.photo-7 { /* mukbang dole */
    right: 4%;
    bottom: -70px;
    width: clamp(148px, 10.3vw, 197px);
    height: clamp(199px, 13.8vw, 265px);
    --photo-opacity: 0.5;
    --bob-duration: 8.6s;
    --bob-delay: -5.2s;
    --bob-distance: -7px;
    --bob-rotate-start: -0.4deg;
    --bob-rotate-end: 0.5deg;
}

/* Delayed Photo Animations */
.photo-1 { --enter-delay: 0.2s; }
.photo-2 { --enter-delay: 0.4s; }
.photo-3 { --enter-delay: 0.6s; }
.photo-4 { --enter-delay: 0.8s; }
.photo-6 { --enter-delay: 0.3s; }
.photo-7 { --enter-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
    .floating-photo {
        animation: photoEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) var(--enter-delay, 0s) forwards;
        translate: 0 0;
        rotate: 0deg;
    }
}

/* Stats views badge */
.stats-badge {
    position: absolute;
    top: calc(46% + clamp(196px, 13.6vw, 262px));
    left: calc(38% + clamp(96px, 6.7vw, 128px));
    pointer-events: auto;
    background-color: var(--accent);
    color: var(--charcoal);
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(248, 255, 0, 0.3);
    z-index: 11;
    opacity: 0;
    transform: scale(0.8);
    animation: badgeEnter 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes badgeEnter {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.play-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon img {
    width: 100%;
    height: 100%;
    transform: rotate(90deg);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}

/* Introductory claim */
.intro-headline {
    position: absolute;
    top: 29%;
    left: 50%;
    z-index: 4;
    width: min(440px, calc(100vw - 96px));
    margin: 0;
    padding: 0;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.33;
    color: var(--charcoal);
    letter-spacing: -1px;
    text-align: left;
    pointer-events: none;
}

/* ==========================================================================
   "O ČEM TO JE" (ABOUT) SECTION
   ========================================================================== */
.section-about {
    min-height: 100vh;
    padding: 0;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100vh;
    min-height: 720px;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(120px, 16vh, 180px);
}

.section-tag-vertical {
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 1;
    padding-top: 0;
}

.about-paragraph {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1px;
    color: var(--charcoal);
    width: 100%;
    max-width: 758px;
    transition: opacity 0.35s ease;
    z-index: 4;
    margin-left: 180px;
}

/* Highlighting the TikTok word with underline */
.underline-accent {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: 0.04em;
    left: 0;
    width: 100%;
    height: 0.06em;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.underline-accent.underline-visible::after {
    transform: scaleX(1);
}

.underline-accent.underline-visible:hover::after {
    animation: underlineReplay 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes underlineReplay {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Word reveal effect */
.reveal-word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(22px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-word.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Scrolling dimmed state */
.about-paragraph.dimmed .reveal-word.visible {
    opacity: 0.4;
}

/* Floating chips positioning container */
.chips-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(920px, calc(100vw - 96px));
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
}

/* Core chips properties */
.chip {
    position: absolute;
    padding: 24px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: auto;
    opacity: 0;
    filter: blur(2px);
    transform: translate(-50%, -50%) translateY(-70vh) rotate(var(--drop-rot-start, 0deg)) scale(0.96, 1.04);
    transform-origin: center bottom;
}

.chips-dropping .chip {
    opacity: 1;
    filter: blur(0);
    animation: chipDrop 1.05s cubic-bezier(0.2, 0.78, 0.22, 1.02) both;
    animation-delay: var(--drop-delay, 0s);
}

.chip-white {
    background-color: var(--white);
    color: var(--charcoal);
}

.chip-dark {
    background-color: var(--charcoal);
    color: var(--white);
}

.chip-accent {
    background-color: var(--accent);
    color: var(--charcoal);
}

.chip-gray {
    background-color: var(--gray-medium);
    color: var(--white);
}

/* Hover dynamics on chips */
.chip:hover {
    transform: translate(-50%, -50%) scale(1.05) rotate(calc(var(--rot-final, 0deg) * 1.5)) !important;
    cursor: default;
    z-index: 10;
}

/* Absolute offsets variables inside JS */
.chip-1 { --rot-final: 0deg; --drop-rot-start: -22deg; --drop-delay: 0.12s; }
.chip-2 { --rot-final: -30deg; --drop-rot-start: 24deg; --drop-delay: 0s; }
.chip-3 { --rot-final: 26deg; --drop-rot-start: -16deg; --drop-delay: 0.18s; }
.chip-4 { --rot-final: -13deg; --drop-rot-start: 12deg; --drop-delay: 0.08s; }
.chip-5 { --rot-final: 5deg; --drop-rot-start: -18deg; --drop-delay: 0.16s; }
.chip-6 { --rot-final: -10deg; --drop-rot-start: 18deg; --drop-delay: 0.04s; }

.chip-1 {
    top: calc(100% - 150px) !important;
    left: 69% !important;
    z-index: 4;
}

.chip-2 {
    top: calc(100% - 210px) !important;
    left: 64% !important;
    z-index: 6;
}

.chip-3 {
    top: calc(100% - 247px) !important;
    left: 40% !important;
    z-index: 2;
}

.chip-4 {
    top: calc(100% - 275px) !important;
    left: 64% !important;
    z-index: 3;
}

.chip-5 {
    top: calc(100% - 140px) !important;
    left: 46% !important;
    z-index: 1;
}

.chip-6 {
    top: calc(100% - 185px) !important;
    left: 30% !important;
    z-index: 5;
}

@keyframes chipDrop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-70vh) rotate(var(--drop-rot-start, 0deg)) scale(0.96, 1.04);
    }
    8% {
        opacity: 1;
    }
    58% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(18px) rotate(calc(var(--rot-final, 0deg) - 2deg)) scale(1.06, 0.9);
    }
    76% {
        transform: translate(-50%, -50%) translateY(-12px) rotate(calc(var(--rot-final, 0deg) + 1deg)) scale(0.98, 1.04);
    }
    90% {
        transform: translate(-50%, -50%) translateY(5px) rotate(var(--rot-final, 0deg)) scale(1.02, 0.97);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) rotate(var(--rot-final, 0deg)) scale(1);
    }
}

/* ==========================================================================
   "SPOLUPRÁCE" (COLLABORATION) SECTION
   ========================================================================== */
.section-collab {
    padding: 160px 0 0 0;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
}

.collab-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collab-top-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
}

.section-tag {
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
}

.collab-headline {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1px;
    max-width: 758px;
}

.collab-action-row {
    display: flex;
    gap: 48px;
    align-items: center;
}

.collab-primary-btn {
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: default;
}

.collab-link-btn {
    min-height: 70px;
    padding: 0 34px;
}

.link-arrow {
    position: relative;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

.collab-link-btn:hover .link-arrow {
    animation: arrowNudge 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes arrowNudge {
    0% {
        transform: translateX(0);
    }
    45% {
        transform: translateX(8px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Stippled Column Charts structure */
.collab-charts {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 0; /* Continuous block structure */
    border-bottom: 2px solid var(--charcoal);
}

.chart-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 615px; /* Maximum possible height container */
    position: relative;
}

.chart-info {
    padding: 0 32px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collab-charts.labels-visible .chart-info,
.chart-item.labels-visible .chart-info {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    font-family: var(--font-sans);
    font-size: clamp(28px, 2.6vw, 32px);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(21, 20, 19, 0.8);
    line-height: 1.4;
}

/* Column Shape */
.chart-column {
    position: relative;
    width: 100%;
    height: 0; /* Animated dynamically to data height */
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

.chart-column-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.column-body {
    flex: 1;
    background-color: var(--charcoal);
    min-height: 0;
}

/* EndOfGraph image cap — sits at the TOP of the column */
.column-end-cap {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    order: -1; /* Renders above .column-body */
}

.column-end-cap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   DIGITAL PRODUCT CARD (E-commerce Section)
   ========================================================================== */
.section-product-promo {
    padding: 100px 0;
    background-color: var(--cream);
}

.product-promo-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: center;
}

.product-card {
    background-color: var(--charcoal);
    color: var(--cream);
    border-radius: 32px;
    padding: 64px;
    width: 100%;
    max-width: 860px;
    box-shadow: var(--card-shadow);
    border: 2px solid rgba(248, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Sleek background details */
.product-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 255, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.product-tag {
    font-family: var(--font-code);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.product-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(241, 236, 229, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.perk {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
}

.product-action-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(241, 236, 229, 0.1);
    padding-top: 32px;
}

.product-price {
    font-size: 40px;
    font-weight: 600;
    color: var(--accent);
}

.product-buy-btn {
    background-color: var(--accent);
    color: var(--charcoal);
    border: none;
    padding: 20px 40px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(248, 255, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-buy-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   REUSABLE CTA BUTTON
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    min-height: 68px;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background-color: var(--white);
    color: var(--charcoal);
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.28s ease, color 0.28s ease;
}

.cta-button:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button-arrow {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-button:hover .cta-button-arrow {
    filter: invert(1);
    transform: translateX(2px);
}

/* ==========================================================================
   SUPPORT CTA SECTION
   ========================================================================== */
.section-product-promo {
    min-height: 100vh;
    padding: 150px 0 170px;
    background-color: var(--cream);
}

.support-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.support-content {
    width: min(620px, 100%);
    margin: 0 auto;
}

.support-title {
    margin: 0 0 38px;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: -1px;
    color: var(--charcoal);
    text-align: left;
}

.support-kicker {
    margin: 0 0 78px;
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.support-kicker::first-letter {
    color: #d8271f;
}

.support-perks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 82px;
}

.support-perks-title {
    margin: 0;
    font-size: clamp(28px, 2.4vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

.support-perk {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 28px;
    align-items: center;
}

.support-perk-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--charcoal);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.support-perk-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-perk-copy strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
}

.support-perk-copy span {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(21, 20, 19, 0.72);
}

.support-sticker {
    position: absolute;
    pointer-events: auto;
    cursor: default;
    user-select: none;
    will-change: translate, rotate;
}

.support-sticker-thumb {
    top: -100px;
    left: 6%;
    width: 146px;
    height: auto;
    transform: rotate(-4deg);
}

.support-sticker-coffee {
    top: 120px;
    right: 96px;
    width: 144px;
    height: auto;
    transform: rotate(-4deg);
}

/* ==========================================================================
   CONTACT SECTION — full width dark
   ========================================================================== */
.section-contact {
    background-color: var(--charcoal);
    padding: 120px 0 140px 0;
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.contact-tag {
    font-family: var(--font-code);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    opacity: 0.5;
}

.contact-email {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: -2px;
    line-height: 1.1;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.contact-email:hover {
    color: var(--white);
    transform: scale(0.98);
}

/* ==========================================================================
   FOOTER & FLOATING STICKERS
   ========================================================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 250px 48px 64px 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 858px;
}

/* Giant background outlined brand mark */
.footer-bg-logo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(640px, 76vw, 1460px);
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 130px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
    flex: 0 0 auto;
}

.footer-brand-logo {
    display: block;
}

.footer-brand-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-tiktok-icon {
    width: 80px;
    height: 80px;
    background-color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-tiktok-icon:hover {
    background-color: var(--accent);
    transform: scale(1.08) rotate(10deg);
}

.footer-tiktok-icon img {
    width: 32px;
    height: 32px;
}

.footer-right {
    flex: 1;
    padding-top: 12px;
}

.footer-links-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
}

.footer-bottom {
    position: absolute;
    top: 428px;
    bottom: auto;
    left: 48px;
    right: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* FLOATING STICKERS INTERACTIVE ELEMENTS */
.stickers-playground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.footer-sticker {
    position: absolute;
    pointer-events: auto;
    cursor: default;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sticker img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

.sticker-flame {
    left: 51%;
    bottom: 8%;
    width: clamp(120px, 11vw, 210px);
    height: clamp(120px, 11vw, 210px);
}

.sticker-thumbsup {
    right: clamp(96px, 16vw, 310px);
    top: 27%;
    width: clamp(130px, 11vw, 209px);
    height: clamp(130px, 11vw, 209px);
}

.sticker-dialog {
    left: 36%;
    top: 19%;
    width: clamp(170px, 14vw, 260px);
    height: clamp(96px, 7.9vw, 147px);
}

.sticker-face {
    right: clamp(0px, 4vw, 96px);
    bottom: 5%;
    width: clamp(190px, 16vw, 294px);
    height: clamp(190px, 16vw, 294px);
}

/* ==========================================================================
   E-COMMERCE CHECKOUT MODAL OVERLAY
   ========================================================================== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 20, 19, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-card {
    background-color: var(--charcoal);
    color: var(--cream);
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    border: 1.5px solid rgba(241, 236, 229, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal.active .checkout-card {
    transform: scale(1) translateY(0);
}

.checkout-card.hidden {
    display: none !important;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--cream);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 0.5;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modal-close-btn:hover {
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-header p {
    font-size: 14px;
    color: rgba(241, 236, 229, 0.7);
    line-height: 1.5;
}

/* Forms layout */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.form-group input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(241, 236, 229, 0.15);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.error-message {
    font-size: 12px;
    color: #ff3333;
    display: none;
}

.error-message.active {
    display: block;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(241, 236, 229, 0.1);
    border-bottom: 1px solid rgba(241, 236, 229, 0.1);
    padding: 16px 0;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
}

.price-val {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}

.preorder-submit-btn {
    background-color: var(--accent);
    color: var(--charcoal);
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(248, 255, 0, 0.15);
}

.preorder-submit-btn:hover {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.secure-checkout-notice {
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
    margin-top: 16px;
}

/* Redirecting Loading spinner overlay */
.loading-state {
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.stipple-spinner {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(248, 255, 0, 0.1);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state h4 {
    font-size: 20px;
    font-weight: 600;
}

.loading-state p {
    font-size: 14px;
    opacity: 0.7;
    max-width: 280px;
    line-height: 1.5;
}

/* Success payment state */
.success-state {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-badge {
    font-size: 56px;
    margin-bottom: 20px;
}

.success-state h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.success-lead-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-info-text {
    font-size: 14px;
    color: rgba(241, 236, 229, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 380px;
}

.download-link-box {
    width: 100%;
    margin-bottom: 24px;
}

.btn-product-download {
    background-color: var(--cream);
    color: var(--charcoal);
    display: block;
    width: 100%;
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--cream);
}

.btn-product-download:hover {
    background-color: transparent;
    color: var(--cream);
}

.success-close-btn {
    background-color: transparent;
    border: none;
    color: rgba(241, 236, 229, 0.6);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.success-close-btn:hover {
    color: var(--cream);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1440px) {
    .about-container { gap: 32px; }
    .about-paragraph { font-size: 40px; }
    .support-title { font-size: 40px; }
    .collab-headline { font-size: 40px; }
}

@media (min-width: 1025px) and (max-height: 820px) {
    .about-container {
        gap: 28px;
        padding-top: clamp(84px, 10vh, 120px);
    }

    .about-paragraph {
        font-size: clamp(40px, 4.3vw, 48px);
        line-height: 1.24;
    }

    .support-title,
    .collab-headline {
        font-size: clamp(40px, 4.3vw, 48px);
        line-height: 1.24;
    }

    .chip-1 { top: calc(100% - 108px) !important; }
    .chip-2 { top: calc(100% - 154px) !important; }
    .chip-3 { top: calc(100% - 188px) !important; }
    .chip-4 { top: calc(100% - 206px) !important; }
    .chip-5 { top: calc(100% - 78px) !important; }
    .chip-6 { top: calc(100% - 126px) !important; }
}

/* Tablet viewports adjust */
@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Triggers Hamburger overlays */
    }
    .nav-actions {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    
    /* Intro layout scales down */
    .section-intro {
        height: 100svh;
        min-height: 0;
        padding-bottom: 64px;
    }
    
    .bg-outline-logo {
        position: absolute;
        top: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .intro-corner-logo {
        left: 24px;
        bottom: 64px;
        width: 80px;
    }
    
    .floating-media-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: auto;
    }
    
    .floating-photo {
        border-radius: 20px;
    }
    
    .photo-1 { left: -20px !important; top: 30% !important; width: clamp(118px, 20vw, 180px) !important; height: clamp(156px, 26.6vw, 240px) !important; }
    .photo-2 { top: 38% !important; left: 40% !important; width: clamp(120px, 20.5vw, 190px) !important; height: clamp(178px, 30.5vw, 282px) !important; }
    .photo-3 { top: 30% !important; left: auto !important; width: clamp(118px, 20vw, 180px) !important; height: clamp(176px, 30vw, 270px) !important; }
    .photo-4 { top: 68% !important; left: auto !important; right: 24% !important; width: clamp(104px, 17.5vw, 160px) !important; height: clamp(134px, 22.6vw, 207px) !important; display: block; }
    .photo-6 { top: 58% !important; width: clamp(118px, 20vw, 180px) !important; height: clamp(156px, 26.5vw, 238px) !important; }
    .photo-7 { right: 4% !important; bottom: -48px !important; width: clamp(116px, 19.8vw, 178px) !important; height: clamp(156px, 26.6vw, 238px) !important; display: block; }
    
    .stats-badge {
        top: calc(34% + clamp(130px, 22.3vw, 206px)) !important;
        left: calc(40% + clamp(58px, 9.8vw, 91px)) !important;
    }

    .intro-headline {
        position: absolute;
        top: clamp(112px, 16vh, 150px);
        left: 50%;
        width: min(420px, calc(100% - 48px));
        max-width: calc(100% - 48px);
        margin: 0;
        padding: 0;
        font-size: 40px;
        transform: translateX(-50%);
    }
    
    /* About paragraph stacks */
    .section-about {
        min-height: 100svh;
    }

    .about-container {
        gap: 32px;
        height: 100svh;
        min-height: 0;
        align-items: flex-start;
    }
    
    .section-tag-vertical {
        opacity: 1;
    }
    
    .about-paragraph {
        font-size: 32px;
        max-width: 100%;
        margin-left: 0;
    }

    .support-title,
    .collab-headline {
        font-size: 32px;
        max-width: 100%;
    }
    
    .chips-container {
        position: absolute;
        display: block;
        margin-top: 0;
        width: min(720px, calc(100vw - 48px));
        height: 100%;
    }
    
    .chip {
        position: absolute !important;
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .chip:hover {
        transform: translate(-50%, -50%) scale(1.03) !important;
    }

    .chip-1 { top: calc(100% - 132px) !important; left: 78% !important; }
    .chip-2 { top: calc(100% - 172px) !important; left: 64% !important; }
    .chip-3 { top: calc(100% - 232px) !important; left: 40% !important; }
    .chip-4 { top: calc(100% - 232px) !important; left: 64% !important; }
    .chip-5 { top: calc(100% - 108px) !important; left: 51% !important; }
    .chip-6 { top: calc(100% - 130px) !important; left: 26% !important; }

    .section-product-promo {
        min-height: auto;
        padding: 120px 0 130px;
    }

    .support-container {
        max-width: 760px;
    }

    .support-sticker-thumb {
        left: 0% !important;
        width: 96px;
    }

    .support-sticker-coffee {
        top: 110px;
        right: 0% !important;
        transform: rotate(-4deg) scale(0.86);
        transform-origin: top right;
    }
    
    /* Columns stats charts stack */
    .collab-charts {
        flex-direction: column;
        border-bottom: none;
        gap: 0;
    }
    
    .chart-item {
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-bottom: none;
        padding-bottom: 0;
        gap: 28px;
        min-height: 118px;
    }
    
    .chart-info {
        padding: 0;
        max-width: 60%;
        text-align: left;
    }
    
    .chart-column {
        width: var(--mobile-chart-width, 240px) !important;
        height: 118px !important;
        flex: 0 0 auto;
        margin-right: calc(50% - 50vw);
    }

    .chart-item:nth-child(1) { --mobile-chart-width: min(31vw, 180px); }
    .chart-item:nth-child(2) { --mobile-chart-width: min(38vw, 230px); }
    .chart-item:nth-child(3) { --mobile-chart-width: min(45vw, 280px); }
    .chart-item:nth-child(4) { --mobile-chart-width: min(52vw, 330px); }
    
    .chart-column-inner {
        flex-direction: row;
        align-items: stretch;
        bottom: auto;
        top: 0;
    }

    .column-body {
        order: 2;
        margin-left: -1px;
    }
    
    .column-end-cap {
        display: flex;
        order: 1;
        width: 118px;
        height: 118px;
        align-items: stretch;
        justify-content: center;
        overflow: hidden;
    }

    .column-end-cap img {
        width: 218px;
        height: 118px;
        object-fit: fill;
        transform: rotate(-90deg);
    }
    
    .footer {
        min-height: 760px;
        padding: 80px 32px 56px 32px;
    }

    .footer-bg-logo {
        width: min(760px, 112vw);
    }

    .footer-container {
        gap: 56px;
    }

    .footer-bottom {
        top: 640px;
        left: 32px;
        right: 32px;
    }

    .stickers-playground {
        display: block;
    }

    .footer-sticker {
        pointer-events: none;
    }

    .sticker-flame {
        left: 20%;
        bottom: 12%;
        width: 120px;
        height: 120px;
    }

    .sticker-thumbsup {
        top: auto;
        right: 25%;
        bottom: 34%;
        width: 128px;
        height: 128px;
    }

    .sticker-dialog {
        top: auto;
        left: auto;
        right: 40%;
        bottom: 52%;
        width: 180px;
        height: 102px;
    }

    .sticker-face {
        right: 2%;
        bottom: 7%;
        width: 180px;
        height: 180px;
    }
    
    .contact-email {
        font-size: 40px;
        letter-spacing: -1px;
    }
}

/* Mobile viewport adjusts */
@media (max-width: 480px) {
    .section-intro {
        height: 100svh;
        min-height: 0;
        padding-bottom: 0;
    }

    .nav-container {
        padding: 0 24px;
    }
    
    .nav-logo {
        width: 48px;
        height: 48px;
    }

    .intro-corner-logo {
        left: 24px;
        bottom: 64px;
        width: 64px;
    }
    
    .floating-media-wrapper {
        height: 100%;
    }
    
    .photo-1 { left: -20px !important; top: 31% !important; width: 96px !important; height: 128px !important; }
    .photo-2 { top: 38% !important; left: 39% !important; width: 100px !important; height: 148px !important; }
    .photo-3 { top: 18% !important; ; width: 96px !important; height: 144px !important; }
    .photo-4 { top: 68% !important; right: 18% !important; width: 86px !important; height: 112px !important; display: block; }
    .photo-6 { top: 56% !important; left: 10% !important; width: 96px !important; height: 128px !important; }
    .photo-7 { right: 2% !important; bottom: -36px !important; width: 94px !important; height: 126px !important; display: block; }
    
    .stats-badge {
        padding: 10px 16px;
        top: calc(36% + 108px) !important;
        left: calc(39% + 48px) !important;
    }
    
    .intro-headline {
        font-size: 28px;
        line-height: 1.25;
        max-width: calc(100% - 32px);
        top: 108px;
    }
    
    .about-paragraph {
        font-size: 24px;
        line-height: 1.4;
    }

    .section-about {
        min-height: 100svh;
        padding-top: 0;
    }

    .about-container {
        padding: 0 24px;
        padding-top: 120px;
        height: 100svh;
        min-height: 0;
        align-items: flex-start;
        gap: 24px;
    }

    .section-tag-vertical {
        padding-top: 0;
    }

    .chip {
        padding: 12px 16px;
        font-size: 11px;
    }

    .chips-container {
        width: calc(100vw - 32px);
        height: 100%;
    }

    .chip-1 { top: calc(100% - 92px) !important; left: 73% !important; }
    .chip-2 { top: calc(100% - 132px) !important; left: 63% !important; }
    .chip-3 { top: calc(100% - 206px) !important; left: 40% !important; }
    .chip-4 { top: calc(100% - 186px) !important; left: 63% !important; }
    .chip-5 { top: calc(100% - 106px) !important; left: 50% !important; }
    .chip-6 { top: calc(100% - 120px) !important; left: 26% !important; }

    .section-product-promo {
        padding: 96px 0 110px;
    }

    .support-container {
        padding: 0 24px;
    }

    .support-content {
        margin: 0;
        width: 100%;
    }

    .support-title {
        margin-bottom: 28px;
        font-size: 24px;
        line-height: 1.4;
        text-align: left;
    }

    .support-kicker {
        max-width: 270px;
        margin-bottom: 58px;
        font-size: 11px;
        line-height: 1.45;
    }

    .support-perks {
        gap: 24px;
        margin-bottom: 54px;
    }

    .support-perk {
        grid-template-columns: 54px 1fr;
        gap: 18px;
    }

    .support-perk-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .support-perk-copy strong {
        font-size: 16px;
    }

    .support-perk-copy span {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        min-height: 64px;
        padding: 0 24px;
    }

    .support-sticker-thumb {
        top: -86px;
        left: auto;
        right: 28px;
        width: 74px;
    }

    .support-sticker-coffee {
        top: 110px;
        right: 18px;
        transform: rotate(-5deg) scale(0.62);
        transform-origin: top right;
    }
    
    .collab-headline {
        font-size: 24px;
        line-height: 1.4;
    }

    .collab-container {
        padding: 0 24px;
    }

    .collab-charts {
        gap: 0;
    }

    .chart-item {
        gap: 18px;
        align-items: center;
        min-height: 144px;
    }

    .chart-info {
        max-width: 48%;
    }

    .stat-label {
        font-size: 16px;
    }

    .chart-column {
        width: var(--mobile-chart-width, 220px) !important;
        height: 144px !important;
        margin-right: -24px;
    }

    .chart-item:nth-child(1) { --mobile-chart-width: calc(32vw + 24px); }
    .chart-item:nth-child(2) { --mobile-chart-width: calc(40vw + 24px); }
    .chart-item:nth-child(3) { --mobile-chart-width: calc(48vw + 24px); }
    .chart-item:nth-child(4) { --mobile-chart-width: calc(56vw + 24px); }

    .column-end-cap {
        width: 144px;
        height: 144px;
    }

    .column-end-cap img {
        width: 266px;
        height: 144px;
        margin-left: auto;
        object-fit: fill;
    }
    
    .collab-action-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .collab-primary-btn {
        width: 100%;
        text-align: left;
    }
    
    .collab-link-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-description {
        font-size: 15px;
    }
    
    .product-action-box {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .product-buy-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-email {
        font-size: 28px;
    }
    
    .footer-links-grid {
        gap: 20px;
    }
    
    .footer {
        min-height: 760px;
        padding: 64px 24px 56px 24px;
    }

    .footer-bg-logo {
        width: 132vw;
    }

    .footer-container {
        padding: 0;
        gap: 64px;
    }

    .footer-bottom {
        top: 594px;
        left: 24px;
        right: 24px;
        bottom: auto;
    }

    .sticker-flame {
        left: 20%;
        bottom: 25%;
        width: 88px;
        height: 88px;
    }

    .sticker-thumbsup {
        top: auto;
        right: 20%;
        bottom: 38%;
        width: 94px;
        height: 94px;
    }

    .sticker-dialog {
        top: auto;
        left: 10%;
        bottom: 50%;
    }

    .sticker-face {
        right: -5px;
        bottom: 6%;
        width: 138px;
        height: 138px;
    }
    
    .checkout-card {
        padding: 32px 20px;
        width: 90%;
    }
}
