/* ═══════════════════════════════════════════════════════════
   LOMRA — ULTIMATE COMING SOON 
   Design System & Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
    /* Brand Palette — extracted from LOMRA logo */
    --c-red:        #E63946;
    --c-red-dark:   #C62828;
    --c-fire:       #E8572A;
    --c-orange:     #F4845F;
    --c-amber:      #F4A261;
    --c-gold:       #F5A623;
    --c-yellow:     #FFB74D;

    /* Dark theme */
    --c-bg:         #06060B;
    --c-surface:    #0C0C14;
    --c-card:       #12121C;
    --c-border:     rgba(255,255,255,0.05);

    /* Text */
    --c-text:       #FFFFFF;
    --c-text-2:     rgba(255,255,255,0.65);
    --c-text-3:     rgba(255,255,255,0.35);

    /* Gradients */
    --g-brand:      linear-gradient(135deg, var(--c-red) 0%, var(--c-fire) 25%, var(--c-orange) 50%, var(--c-amber) 75%, var(--c-gold) 100%);
    --g-brand-v:    linear-gradient(180deg, var(--c-fire) 0%, var(--c-gold) 100%);
    --g-glow:       radial-gradient(circle, rgba(232,87,42,0.25) 0%, transparent 70%);
    --g-glass:      rgba(255,255,255,0.025);
    --g-glass-b:    rgba(255,255,255,0.06);
    --g-glass-h:    rgba(255,255,255,0.10);

    /* Typography */
    --f-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --f-display:    'Syne', 'Space Grotesk', sans-serif;
    --f-mono:       'Space Grotesk', monospace;

    /* Motion */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:  cubic-bezier(0.45, 0, 0.15, 1);

    /* Layout */
    --container:    1280px;
    --gap:          24px;
    --radius:       20px;
    --radius-lg:    28px;
    --radius-xl:    36px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    user-select: none;
    font-family: var(--f-body);
    background: var(--c-bg);
    color: var(--c-text);
    overflow-x: hidden;
    line-height: 1.6;
}
::selection { background: rgba(232,87,42,0.4); color: #fff; }
a { color: inherit; text-decoration: none; }
button { border: none; outline: none; cursor: pointer; font-family: inherit; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.gradient-text {
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   CANVAS / EFFECTS
   ═══════════════════════════════════════════════════════════ */
#webglCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════ */
.cursor {
    position: fixed;
    top: 0; left: 0;
    z-index: 99999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor__dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), opacity 0.3s;
}

.cursor__ring {
    width: 44px; height: 44px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), border-color 0.3s;
}

.cursor__text {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.cursor.hovering .cursor__dot { width: 0; height: 0; opacity: 0; }
.cursor.hovering .cursor__ring { width: 80px; height: 80px; border-color: rgba(244,132,95,0.6); }
.cursor.hovering .cursor__text { opacity: 1; }

@media (hover: none), (max-width: 768px) {
    .cursor { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════ */
.loader {
    position: fixed; inset: 0;
    z-index: 100000;
    background: var(--c-bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__inner { text-align: center; }

.loader__logo-wrap {
    position: relative;
    width: 140px; height: 140px;
    margin: 0 auto 36px;
}

.loader__ring-svg {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
}

.loader__ring {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transform-origin: center;
}

.loader__ring--1 {
    stroke: var(--c-red);
    animation: loaderDash 1.8s var(--ease-smooth) infinite, loaderSpin 3s linear infinite;
}
.loader__ring--2 {
    stroke: var(--c-fire);
    animation: loaderDash 1.8s var(--ease-smooth) 0.2s infinite, loaderSpin 3s linear reverse infinite;
}
.loader__ring--3 {
    stroke: var(--c-gold);
    animation: loaderDash 1.8s var(--ease-smooth) 0.4s infinite, loaderSpin 3s linear infinite;
}

@keyframes loaderDash {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.loader__logo-img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: auto;
    filter: drop-shadow(0 0 30px rgba(232,87,42,0.5));
}

.loader__bar-track {
    width: 220px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader__bar-fill {
    width: 0%;
    height: 100%;
    background: var(--g-brand);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.loader__percent {
    margin-top: 16px;
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--c-text-3);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    padding: 14px 48px;
    background: rgba(6,6,11,0.75);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--c-border);
}

.nav__brand { display: flex; align-items: center; }
.nav__logo {
    height: 38px; width: auto;
    filter: drop-shadow(0 0 20px rgba(232,87,42,0.3));
    transition: filter 0.3s, transform 0.3s var(--ease-spring);
}
.nav__brand:hover .nav__logo {
    filter: drop-shadow(0 0 30px rgba(232,87,42,0.6));
    transform: scale(1.04);
}

.nav__links {
    display: flex; align-items: center; gap: 36px;
}

.nav__link {
    font-size: 14px; font-weight: 500;
    color: var(--c-text-2);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}
.nav__link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--g-brand);
    border-radius: 2px;
    transition: width 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--c-text); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    position: relative;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 14px; font-weight: 600;
    color: #fff;
    overflow: hidden;
    background: var(--g-brand);
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.nav__cta-glow {
    position: absolute; inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.nav__cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 30px rgba(232,87,42,0.4); }
.nav__cta:hover .nav__cta-glow { opacity: 1; }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav__burger span {
    width: 100%; height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0;
    z-index: 8999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.open { pointer-events: auto; opacity: 1; }
.mobile-menu__bg {
    position: absolute; inset: 0;
    background: rgba(6,6,11,0.95);
    backdrop-filter: blur(40px);
}
.mobile-menu__nav {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 28px;
}
.mobile-menu__link {
    font-family: var(--f-display);
    font-size: 28px; font-weight: 700;
    color: var(--c-text-2);
    transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--c-text); }
.mobile-menu__cta {
    margin-top: 12px;
    padding: 14px 36px;
    background: var(--g-brand);
    border-radius: 50px;
    font-size: 16px; font-weight: 700; color: #fff;
}

@media (max-width: 768px) {
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .container { padding: 0 24px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(232,87,42,0.08);
    border: 1px solid rgba(232,87,42,0.15);
    border-radius: 50px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-amber);
    margin-bottom: 20px;
}

.section-header__title {
    font-family: var(--f-display);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

/* ── Animate system ── */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="fade-left"] { transform: translateX(60px); }
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger children */
[data-animate="stagger-up"] > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="stagger-up"].is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="stagger-up"].is-visible > *:nth-child(1) { transition-delay: 0s; }
[data-animate="stagger-up"].is-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-animate="stagger-up"].is-visible > *:nth-child(3) { transition-delay: 0.16s; }
[data-animate="stagger-up"].is-visible > *:nth-child(4) { transition-delay: 0.24s; }
[data-animate="stagger-up"].is-visible > *:nth-child(5) { transition-delay: 0.32s; }
[data-animate="stagger-up"].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-animate="stagger-up"].is-visible > *:nth-child(7) { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 3;
    padding: 130px 48px 80px;
    overflow: hidden;
}

.hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 960px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 10px;
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    cursor: default;
}
.hero__badge-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c-fire);
    position: relative;
}
.hero__badge-pulse::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--c-fire);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.8); opacity: 0; }
}
.hero__badge-text {
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-text-2);
}
.hero__badge-arrow { color: var(--c-text-3); transition: transform 0.3s; }
.hero__badge:hover .hero__badge-arrow { transform: translateX(3px); }

/* Title — split text */
.hero__title {
    font-family: var(--f-display);
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 28px;
}
.hero__title-line {
    display: block;
    overflow: hidden;
}
.hero__title-word {
    display: inline-block;
    margin-right: 0.2em;
    transform: translateY(110%);
    transition: transform 1s var(--ease-out);
}
.hero__title.revealed .hero__title-word {
    transform: translateY(0);
}
.hero__title-word--gradient {
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero__sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--c-text-2);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* CTA Buttons */
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-size: 15px; font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.btn--primary {
    background: var(--g-brand);
    color: #fff;
}
.btn--primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 60px rgba(232,87,42,0.45), 0 0 120px rgba(232,87,42,0.12);
}
.btn__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,0.25) 55%, transparent 60%);
    background-size: 300% 100%;
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn__icon {
    display: flex; align-items: center;
    transition: transform 0.3s var(--ease-spring);
}
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--primary:hover .btn__icon { transform: translateX(4px); }

.btn--glass {
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    color: var(--c-text);
    backdrop-filter: blur(12px);
}
.btn--glass:hover {
    background: var(--g-glass-h);
    border-color: rgba(232,87,42,0.2);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.btn--glass:hover .btn__icon { transform: translateY(3px); }

/* Scroll indicator */
.hero__scroll {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}
.hero__scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--c-text-3);
    border-radius: 12px;
    position: relative;
}
.hero__scroll-wheel {
    width: 3px; height: 8px;
    background: var(--c-fire);
    border-radius: 3px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}
.hero__scroll-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-text-3);
}

/* Floating food items */
.hero__floaters {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
}
.floater {
    position: absolute;
    left: var(--x); top: var(--y);
    font-size: 48px;
    opacity: 0.5;
    transition: transform 0.15s ease-out;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: floaterBob calc(4s + var(--x, 0) * 0.01s) ease-in-out infinite alternate;
}
.floater[data-depth="2"] { font-size: 36px; opacity: 0.35; }
.floater[data-depth="3"] { font-size: 28px; opacity: 0.2; }
@keyframes floaterBob {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-25px) rotate(8deg); }
}

@media (max-width: 768px) {
    .hero { padding: 110px 24px 60px; }
    .hero__title { letter-spacing: -1.5px; }
    .floater { display: none; }
    .hero__scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════ */
.marquee {
    position: relative; z-index: 3;
    padding: 28px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
    background: rgba(255,255,255,0.01);
}
.marquee__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
.marquee__item {
    font-family: var(--f-display);
    font-size: 16px; font-weight: 700;
    letter-spacing: 4px;
    color: var(--c-text-3);
    white-space: nowrap;
    text-transform: uppercase;
}
.marquee__sep {
    font-size: 10px;
    color: var(--c-fire);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN
   ═══════════════════════════════════════════════════════════ */
.countdown {
    position: relative; z-index: 3;
    padding: 120px 0;
}

.countdown__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown__card {
    position: relative;
    width: 170px;
    perspective: 800px;
}

.countdown__card-inner {
    padding: 40px 20px;
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.countdown__card-inner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--g-brand);
    opacity: 0;
    transition: opacity 0.4s;
}
.countdown__card:hover .countdown__card-inner {
    border-color: rgba(232,87,42,0.2);
    transform: translateY(-8px) rotateX(4deg);
    box-shadow: 0 30px 60px rgba(232,87,42,0.08), 0 0 80px rgba(232,87,42,0.04);
}
.countdown__card:hover .countdown__card-inner::before { opacity: 1; }

.countdown__card-reflection {
    position: absolute;
    bottom: -40%;
    left: 10%; right: 10%;
    height: 50%;
    background: var(--g-brand);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s;
}
.countdown__card:hover .countdown__card-reflection { opacity: 0.06; }

.countdown__num {
    display: block;
    font-family: var(--f-display);
    font-size: 56px; font-weight: 800;
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown__label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-text-3);
}

.countdown__sep {
    font-family: var(--f-display);
    font-size: 44px;
    color: var(--c-text-3);
    font-weight: 300;
    line-height: 1;
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .countdown { padding: 80px 0; }
    .countdown__card { width: 140px; }
    .countdown__num { font-size: 40px; }
    .countdown__sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BENTO FEATURES GRID
   ═══════════════════════════════════════════════════════════ */
.features {
    position: relative; z-index: 3;
    padding: 120px 0;
}

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.bento__card {
    position: relative;
    padding: 36px;
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    cursor: default;
}

.bento__card-glow {
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: var(--g-glow);
    top: -100px; right: -100px;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.bento__card:hover .bento__card-glow { opacity: 1; }

.bento__card:hover {
    border-color: rgba(232,87,42,0.15);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 0 80px rgba(232,87,42,0.04);
}

.bento__card--lg { grid-column: span 1; grid-row: span 2; }
.bento__card--md { grid-column: span 1; }
.bento__card--sm { grid-column: span 1; }

.bento__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(232,87,42,0.08);
    border: 1px solid rgba(232,87,42,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.bento__title {
    font-family: var(--f-display);
    font-size: 20px; font-weight: 700;
    margin-bottom: 10px;
}

.bento__desc {
    font-size: 14px; line-height: 1.7;
    color: var(--c-text-2);
}

/* Speed lines in lightning card */
.bento__visual--speed {
    margin-top: 24px;
    position: relative;
    height: 60px;
    overflow: hidden;
}
.speed-line {
    position: absolute;
    height: 3px;
    border-radius: 3px;
    background: var(--g-brand);
    top: calc(var(--i) * 14px);
    left: 0;
    width: 0;
    animation: speedLine 2s var(--ease-out) infinite;
    animation-delay: calc(var(--i) * 0.15s);
}
@keyframes speedLine {
    0% { width: 0; left: 0; opacity: 0; }
    30% { width: 60%; opacity: 1; }
    100% { width: 30%; left: 100%; opacity: 0; }
}

@media (max-width: 1024px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento__card--lg { grid-row: span 1; }
}
@media (max-width: 640px) {
    .bento { grid-template-columns: 1fr; }
    .features { padding: 80px 0; }
}

/* ═══════════════════════════════════════════════════════════
   SHOWCASE — 3D PHONE
   ═══════════════════════════════════════════════════════════ */
.showcase {
    position: relative; z-index: 3;
    padding: 140px 0;
    overflow: hidden;
}

.showcase__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase__info { max-width: 520px; }

.showcase__title {
    font-family: var(--f-display);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 16px 0 20px;
}

.showcase__desc {
    font-size: 16px; line-height: 1.8;
    color: var(--c-text-2);
    margin-bottom: 36px;
}

.showcase__stores {
    display: flex; gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.store-badge {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 24px;
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    color: var(--c-text);
    transition: all 0.4s var(--ease-spring);
}
.store-badge:hover {
    background: var(--g-glass-h);
    border-color: rgba(232,87,42,0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.store-badge svg { flex-shrink: 0; }
.store-badge small { display: block; font-size: 11px; color: var(--c-text-3); }
.store-badge strong { display: block; font-size: 15px; font-weight: 700; }

.showcase__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.showcase__features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--c-text-2);
}
.check-icon {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(232,87,42,0.1);
    color: var(--c-fire);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    flex-shrink: 0;
}

/* 3D Phone */
.showcase__phone-wrap {
    display: flex;
    justify-content: center;
    perspective: 1200px;
    position: relative;
}

.showcase__phone-glow {
    position: absolute;
    width: 400px; height: 400px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(232,87,42,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: phoneGlow 4s ease-in-out infinite alternate;
}
@keyframes phoneGlow {
    0% { opacity: 0.5; transform: translate(-50%,-50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.phone {
    width: 280px; height: 580px;
    transform-style: preserve-3d;
    animation: phoneFloat 8s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.phone__frame {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #2a2a38 0%, #16161e 50%, #0a0a12 100%);
    border-radius: 44px;
    border: 2px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.5);
}

.phone__notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 26px;
    background: #0a0a0f;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone__screen {
    position: absolute;
    inset: 6px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--c-bg);
}

/* Phone UI mockup */
.phone-ui {
    width: 100%; height: 100%;
    padding: 38px 16px 10px;
    display: flex; flex-direction: column;
    background: linear-gradient(180deg, var(--c-bg) 0%, #0a0a14 100%);
}

.phone-ui__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.phone-ui__greet { display: block; font-size: 10px; color: var(--c-text-3); }
.phone-ui__name { display: block; font-family: var(--f-display); font-size: 16px; font-weight: 700; }
.phone-ui__avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--g-brand);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.phone-ui__avatar-img { width: 100%; height: 100%; object-fit: cover; }

.phone-ui__search {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: var(--c-card);
    border-radius: 12px;
    font-size: 11px; color: var(--c-text-3);
    margin-bottom: 14px;
}

.phone-ui__cats {
    display: flex; gap: 6px;
    margin-bottom: 14px;
    overflow: hidden;
}
.phone-ui__cat {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 9px; font-weight: 600;
    white-space: nowrap;
    background: var(--c-card);
    color: var(--c-text-3);
}
.phone-ui__cat--active {
    background: var(--g-brand);
    color: #fff;
}

.phone-ui__promo {
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(232,87,42,0.12), rgba(245,166,35,0.08));
    border: 1px solid rgba(232,87,42,0.15);
    border-radius: 14px;
    margin-bottom: 14px;
}
.phone-ui__promo-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--c-fire);
    border-radius: 6px;
    font-size: 8px; font-weight: 800;
    color: #fff;
    margin-right: 6px;
}
.phone-ui__promo-text {
    font-size: 10px; color: var(--c-text-2);
}
.phone-ui__promo-text strong { font-size: 11px; color: var(--c-text); }

.phone-ui__cards {
    display: flex; flex-direction: column;
    gap: 8px; flex: 1;
    overflow: hidden;
}
.phone-ui__card {
    display: flex; align-items: center; gap: 10px;
    padding: 10px;
    background: var(--c-card);
    border-radius: 14px;
    border: 1px solid var(--c-border);
}
.phone-ui__card-img {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    background: rgba(255,255,255,0.03);
}
.phone-ui__card-info { flex: 1; }
.phone-ui__card-info strong { display: block; font-size: 11px; font-weight: 700; }
.phone-ui__card-info span { font-size: 9px; color: var(--c-text-3); }
.phone-ui__card-price {
    font-size: 12px; font-weight: 800;
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-ui__nav {
    display: flex; justify-content: space-around;
    padding: 10px 0 2px;
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}
.phone-ui__nav-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    color: var(--c-text-3); font-size: 14px;
}
.phone-ui__nav-item small { font-size: 7px; }
.phone-ui__nav-item--active { color: var(--c-fire); }

@media (max-width: 1024px) {
    .showcase__layout { grid-template-columns: 1fr; text-align: center; }
    .showcase__info { max-width: 100%; }
    .showcase__stores { justify-content: center; }
    .showcase__features { justify-items: center; }
    .showcase__phone-wrap { order: -1; margin-bottom: 20px; }
    .tag { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
    .showcase { padding: 80px 0; }
    .phone { width: 240px; height: 500px; }
}

/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */
.stats {
    position: relative; z-index: 3;
    padding: 80px 0;
}

.stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stats__item { text-align: center; }

.stats__num {
    font-family: var(--f-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stats__suffix {
    font-family: var(--f-display);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    background: var(--g-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats__label {
    display: block;
    margin-top: 6px;
    font-size: 13px; font-weight: 500;
    color: var(--c-text-3);
    letter-spacing: 0.5px;
}

.stats__divider {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, var(--c-text-3), transparent);
    opacity: 0.3;
}

@media (max-width: 640px) {
    .stats__grid { gap: 24px; }
    .stats__divider { display: none; }
    .stats__item { min-width: 130px; }
}

/* ═══════════════════════════════════════════════════════════
   NOTIFY / NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.notify {
    position: relative; z-index: 3;
    padding: 120px 0;
}

.notify__card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Animated border */
.notify__card-border {
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 40%, var(--c-red), var(--c-fire), var(--c-gold), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderRotate 4s linear infinite;
}
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes borderRotate { to { --border-angle: 360deg; } }

.notify__inner {
    padding: 72px 60px;
    background: var(--g-glass);
    backdrop-filter: blur(40px);
    border-radius: var(--radius-xl);
    text-align: center;
}

.notify__icon {
    width: 72px; height: 72px;
    border-radius: 22px;
    background: rgba(232,87,42,0.08);
    border: 1px solid rgba(232,87,42,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.notify__title {
    font-family: var(--f-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.notify__desc {
    font-size: 16px; line-height: 1.7;
    color: var(--c-text-2);
    max-width: 460px;
    margin: 0 auto 36px;
}

.notify__form { max-width: 520px; margin: 0 auto; }

.notify__input-wrap {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--g-glass-b);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.notify__input-wrap:focus-within {
    border-color: rgba(232,87,42,0.4);
    box-shadow: 0 0 0 4px rgba(232,87,42,0.08);
}

.notify__input {
    flex: 1;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-family: var(--f-body);
    outline: none;
}
.notify__input::placeholder { color: var(--c-text-3); }

.notify__btn {
    display: flex; align-items: center; gap: 8px;
    padding: 18px 28px;
    background: var(--g-brand);
    border: none;
    font-size: 14px; font-weight: 700;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s var(--ease-spring);
}
.notify__btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}
.notify__btn.success {
    background: linear-gradient(135deg, #10B981, #059669);
}
.notify__btn-icon {
    transition: transform 0.3s;
}
.notify__btn:hover .notify__btn-icon { transform: translateX(3px); }

/* Social proof */
.notify__proof {
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.notify__avatars { display: flex; }
.notify__av {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--c-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    margin-left: -8px;
}
.notify__av:first-child { margin-left: 0; }
.notify__proof-text {
    font-size: 13px; color: var(--c-text-2);
}

@media (max-width: 640px) {
    .notify { padding: 80px 0; }
    .notify__inner { padding: 48px 24px; }
    .notify__input-wrap {
        flex-direction: column;
        border-radius: 16px;
    }
    .notify__btn {
        justify-content: center;
        border-radius: 0 0 16px 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    position: relative; z-index: 3;
    padding: 48px 0 28px;
    border-top: 1px solid var(--c-border);
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { height: 30px; width: auto; }
.footer__tagline { font-size: 13px; color: var(--c-text-3); }

.footer__socials { display: flex; gap: 10px; }

.footer__social {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--g-glass);
    border: 1px solid var(--g-glass-b);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-text-2);
    transition: all 0.3s var(--ease-spring);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social:hover {
    background: rgba(232,87,42,0.08);
    border-color: rgba(232,87,42,0.25);
    color: var(--c-fire);
    transform: translateY(-3px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    font-size: 12px;
    color: var(--c-text-3);
    flex-wrap: wrap;
    gap: 12px;
}

.footer__links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__link {
    color: var(--c-text-3);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--c-fire);
}

@media (max-width: 640px) {
    .footer__top, .footer__bottom {
        justify-content: center;
        text-align: center;
    }
    
    .footer__links {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   TILT EFFECT (JS populated)
   ═══════════════════════════════════════════════════════════ */
[data-tilt] {
    transform-style: preserve-3d;
    perspective: 1000px;
}
