/* ══════════════════════════════════════════════════════════════════════════════
   STRIXEL — Premium White-Background Design System
   Inspired by Mercedes-Benz, Samsung, Microsoft.
   Z-pattern alternating blocks. Scroll-driven reveals. Clean & serious.
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Tokens ── */
:root {
    --white:    #ffffff;
    --off-white:#f8f9fb;
    --gray-50:  #f2f3f5;
    --gray-100: #e5e7eb;
    --gray-200: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black:    #0a0a0a;

    --accent:   #FFC515;
    --accent-dark: #e0a800;
    --accent-glow: rgba(255,197,21,.15);

    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --ease-out: cubic-bezier(.16,1,.3,1);
    --radius:   8px;
    --radius-lg:16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
}

/* ── 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 {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* ── Utility ── */
.label {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}
.label--light { color: var(--accent); }

.heading-2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--gray-900);
    margin-bottom: 24px;
}
.heading-2--light { color: var(--white); }

.body-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 520px;
    margin-bottom: 16px;
}
.body-text--light { color: rgba(255,255,255,.7); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .88rem;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease-out);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.btn--primary {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--primary:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.btn--outline {
    background: transparent;
    color: var(--gray-900);
    border: 1.5px solid var(--gray-200);
}
.btn--outline:hover {
    border-color: var(--gray-900);
    background: var(--gray-50);
}
.btn--full { width:100%; }

/* ══════════════════════════════════════════
   INTRO OVERLAY
   ══════════════════════════════════════════ */
#introOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}
#introOverlay.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#introVideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
#skipIntro {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10000;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s;
}
#skipIntro:hover {
    background: rgba(255,255,255,.25);
}
.enable-sound-btn {
    position: absolute;
    bottom: 32px;
    left: 32px;
    z-index: 10000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--black);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 197, 21, 0.5);
    transition: all .25s ease;
    display: none;
    align-items: center;
    gap: 6px;
}
.enable-sound-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(255, 197, 21, 0.8);
}

/* ── Dark Mode Overrides ── */
body.dark-mode {
    --white:     #0b0e14;
    --off-white: #111520;
    --gray-50:   #171c2b;
    --gray-100:  #202636;
    --gray-200:  #2e364a;
    --gray-300:  #475268;
    --gray-400:  #94a0b5;
    --gray-600:  #d1d7e5; /* Ultra visible body text */
    --gray-800:  #f3f5fa;
    --gray-900:  #ffffff; /* Crisp white titles */
    --black:     #000000;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
    --shadow-md: 0 8px 30px rgba(0,0,0,.6);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.7);
}

body.dark-mode .nav.scrolled {
    background: rgba(11, 14, 20, 0.94);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--gray-100);
}

body.dark-mode .btn--outline {
    color: #ffffff;
    border-color: var(--gray-200);
}

body.dark-mode .btn--outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,.08);
}

body.dark-mode .btn--primary {
    background: var(--accent);
    color: #0b0e14;
}

body.dark-mode .btn--primary:hover {
    background: var(--accent-dark);
}

/* Theme Toggle Button */
.nav__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    color: var(--gray-900);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all .25s ease;
}

.theme-toggle:hover {
    transform: scale(1.08);
    border-color: var(--accent);
}

.theme-icon.moon { display: none; }
body.dark-mode .theme-icon.sun { display: none; }
body.dark-mode .theme-icon.moon { display: inline-block; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0);
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--gray-100);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}
.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: .06em;
    color: var(--gray-900);
}
.nav__links {
    display: flex;
    gap: 36px;
}
.nav__links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .2s;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gray-900);
    transition: width .3s var(--ease-out);
}
.nav__links a:hover { color: var(--gray-900); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: var(--radius);
    background: var(--gray-900);
    color: var(--white);
    transition: all .25s;
}
.nav__cta:hover {
    background: var(--black);
    transform: translateY(-1px);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    transition: .3s;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    padding: clamp(130px, 18vw, 200px) 0 clamp(60px, 10vw, 120px);
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero__eyebrow {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--gray-900);
    margin-bottom: 24px;
}
.hero__highlight {
    background: linear-gradient(135deg, var(--accent), #FF8A13);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__body {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__image-wrap {
    position: relative;
}
.hero__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform .6s var(--ease-out);
}
.hero__image-wrap:hover .hero__image {
    transform: translateY(-8px) scale(1.02);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}
.hero__scroll-indicator span {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray-400), transparent);
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ── */
.marquee {
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 18px 0;
    overflow: hidden;
    background: var(--off-white);
    position: relative;
    user-select: none;
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}
.marquee__content {
    display: flex;
    gap: 28px;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: .88rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .12em;
    padding-right: 28px;
}
.marquee__content span { flex-shrink: 0; }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   ZIGZAG SECTIONS (Z-Pattern)
   ══════════════════════════════════════════ */
.zigzag {
    padding: clamp(80px, 12vw, 140px) 0;
}
.zigzag__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.zigzag--reverse .zigzag__container {
    direction: rtl;
}
.zigzag--reverse .zigzag__container > * {
    direction: ltr;
}
.zigzag__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform .5s var(--ease-out), box-shadow .5s;
}
.zigzag__img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ── Service List ── */
.service-list {
    list-style: none;
    margin-top: 8px;
}
.service-list__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: padding-left .3s var(--ease-out);
}
.service-list__item:hover {
    padding-left: 8px;
}
.service-list__number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent-dark);
    opacity: .5;
    min-width: 36px;
    padding-top: 2px;
}
.service-list__item strong {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}
.service-list__item p {
    font-size: .9rem;
    color: var(--gray-600);
}

/* ── Timeline ── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}
.timeline__step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 16px;
    bottom: 0;
    width: 1.5px;
    background: var(--gray-100);
}
.timeline__step:last-child::before { display: none; }
.timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gray-900);
    flex-shrink: 0;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}
.timeline__body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}
.timeline__body p {
    font-size: .9rem;
    color: var(--gray-600);
}

/* ══════════════════════════════════════════
   TECH STACK & PREFERENCES
   ══════════════════════════════════════════ */
.techstack {
    background: var(--off-white);
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.techstack__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
}
.techstack__header {
    margin-bottom: 48px;
    max-width: 650px;
}
.techstack__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.tech-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}
.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
.tech-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.tech-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.tech-card p {
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   RESULTS / TESTIMONIALS
   ══════════════════════════════════════════ */
.results {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--off-white);
}
.results__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
body.dark-mode .testimonial {
    background: var(--gray-50);
    border-color: var(--gray-100);
}

/* ══════════════════════════════════════════
   CTA SECTION (Always sleek dark & high contrast)
   ══════════════════════════════════════════ */
.cta-section {
    background: #0b0e14;
    color: #ffffff;
    padding: clamp(80px, 12vw, 140px) 0;
    border-top: 1px solid #1a202c;
}
.cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.cta-section .label--light {
    color: #FFC515;
}
.cta-section .heading-2--light {
    color: #ffffff;
}
.cta-section .body-text--light {
    color: #94a0b5;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-form input,
.cta-form textarea {
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1.5px solid #202636;
    background: #151a26;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: .95rem;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    resize: vertical;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #717d93;
}
.cta-form input:focus,
.cta-form textarea:focus {
    border-color: #FFC515;
    box-shadow: 0 0 0 3px rgba(255, 197, 21, 0.15);
    background: #1a2130;
}
.cta-form .btn--primary {
    background: #FFC515;
    color: #0b0e14;
    font-weight: 800;
    font-size: .92rem;
    padding: 16px 32px;
}
.cta-form .btn--primary:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 197, 21, 0.25);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 56px 0 28px;
}
.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__logo-img {
    height: 36px;
    border-radius: 6px;
    object-fit: contain;
}
.footer__logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: .06em;
}
.footer__links {
    display: flex;
    gap: 72px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 6px;
}
.footer__col a {
    font-size: .88rem;
    color: var(--gray-600);
    transition: color .2s;
}
.footer__col a:hover { color: var(--gray-900); }
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}
.footer__bottom p {
    font-size: .78rem;
    color: var(--gray-400);
}

/* ══════════════════════════════════════════
   UNSCRAMBLE INTRO OVERLAY
   ══════════════════════════════════════════ */
.unscramble-overlay {
    position: absolute;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}
.unscramble-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: .15em;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255,197,21,.5);
}
.unscramble-sub {
    font-family: var(--font-display);
    font-size: clamp(.75rem, 1.5vw, 1rem);
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(255,255,255,.8);
    margin-top: 12px;
}

/* ══════════════════════════════════════════
   STICKY TEXT REVEAL SECTION
   ══════════════════════════════════════════ */
.sticky-text-section {
    background: var(--off-white);
    position: relative;
}
.sticky-text-track {
    height: 220vh;
    position: relative;
}
.sticky-text-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(20px,5vw,48px);
    text-align: center;
}
.sticky-reveal-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.35;
    max-width: 900px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35em;
}
.sticky-reveal-headline .word {
    opacity: .18;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
    display: inline-block;
}
.sticky-reveal-headline .word.active {
    opacity: 1;
    transform: translateY(0);
    color: var(--gray-900);
}
body.dark-mode .sticky-reveal-headline .word.active {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255,255,255,.2);
}

/* ══════════════════════════════════════════
   INTERACTIVE GEARSWORK ENGINE WIDGET
   ══════════════════════════════════════════ */
.gears-widget {
    margin-top: 28px;
    background: #0d111a;
    border: 1px solid #1e2638;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    position: relative;
    overflow: hidden;
}
.gears-widget__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e2638;
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.gears-widget__title {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--accent);
}
.gears-widget__status {
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.gears-widget__viewport {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gear-svg {
    position: absolute;
    stroke: var(--accent);
    stroke-width: 3px;
    fill: rgba(255, 197, 21, 0.08);
    filter: drop-shadow(0 0 10px rgba(255, 197, 21, 0.35));
    transform-origin: center center;
    will-change: transform;
}
.gear-svg circle {
    fill: #0d111a;
    stroke: var(--accent);
    stroke-width: 3px;
}
.gear-svg--main {
    width: 140px;
    height: 140px;
    left: 20px;
    top: 10px;
}
.gear-svg--interlock {
    width: 100px;
    height: 100px;
    left: 135px;
    top: 50px;
    stroke: #60a5fa;
    fill: rgba(96, 165, 250, 0.08);
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.35));
}
.gear-svg--interlock circle {
    stroke: #60a5fa;
}
.gear-svg--pinion {
    width: 70px;
    height: 70px;
    left: 215px;
    top: 15px;
    stroke: #a78bfa;
    fill: rgba(167, 139, 250, 0.08);
    filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.35));
}
.gear-svg--pinion circle {
    stroke: #a78bfa;
}

/* ══════════════════════════════════════════
   HORIZONTAL STICKY TECH STACK SCROLL PRO
   ══════════════════════════════════════════ */
.horizontal-tech-section {
    position: relative;
    background: #080b10;
    color: #ffffff;
    border-top: 1px solid #171d2b;
    border-bottom: 1px solid #171d2b;
}
.horizontal-tech-track {
    height: 320vh;
    position: relative;
}
.horizontal-tech-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.horizontal-tech-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px) 24px;
}
.label--accent {
    color: var(--accent) !important;
}
.heading-2--tech {
    color: #ffffff !important;
}
.body-text--tech {
    color: #94a0b5 !important;
}
.horizontal-tech-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
}
.horizontal-tech-cards {
    display: flex;
    gap: 28px;
    padding: 0 clamp(20px,5vw,48px);
    width: max-content;
    will-change: transform;
    transition: transform .08s cubic-bezier(0.1, 0.9, 0.2, 1);
}
.tech-card-pro {
    width: 380px;
    flex-shrink: 0;
    background: #111624;
    border: 1px solid #20273c;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tech-card-pro:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 18px 50px rgba(255, 197, 21, 0.15);
}
.tech-card-pro__badge {
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--accent);
    background: rgba(255, 197, 21, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    width: max-content;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 197, 21, 0.25);
}
.tech-card-pro__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.tech-card-pro h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}
.tech-card-pro p {
    font-size: .92rem;
    color: #94a0b5;
    line-height: 1.65;
    margin-bottom: 24px;
}
.tech-card-pro__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid #1d2436;
    padding-top: 16px;
}
.tech-card-pro__meta span {
    font-size: .75rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #e2e8f0;
    background: #192033;
    padding: 4px 10px;
    border-radius: 6px;
}

/* ══════════════════════════════════════════
   BENTO GRID (Sticky on Scroll & Depth)
   ══════════════════════════════════════════ */
.bento-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--off-white);
}
.bento__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px,5vw,48px);
}
.bento__header {
    margin-bottom: 48px;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bento-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
body.dark-mode .bento-card {
    background: var(--gray-50);
    border-color: var(--gray-100);
}
.bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-card--wide {
    grid-column: span 2;
}
.bento-card__badge {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--accent);
    opacity: .7;
    margin-bottom: 12px;
}
.bento-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.bento-card p {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.bento-card__media {
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.bento-card__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}
.bento-card:hover .bento-card__media img {
    transform: scale(1.04);
}

/* ══════════════════════════════════════════
   HOLOGRAPHIC MASKS & SHIMMER FOIL
   ══════════════════════════════════════════ */
.holo-card {
    position: relative;
    overflow: hidden;
}
.holo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 197, 21, 0.4) 50%,
        rgba(0, 225, 255, 0.4) 60%,
        transparent 80%
    );
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateX(-100%) translateY(-100%);
}
.holo-card:hover .holo-shine {
    opacity: 1;
    transform: translateX(100%) translateY(100%);
}

@media (max-width: 960px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--large, .bento-card--wide { grid-column: span 1; grid-row: span 1; }
}

/* Jump-in animation after intro video */
@keyframes jumpIn {
    0%   { transform: translateY(60vh); opacity: 0; }
    60%  { transform: translateY(-3vh); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}
body.site-reveal .hero {
    animation: jumpIn .8s var(--ease-out) forwards;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 960px) {
    .nav__links, .nav__cta { display: none; }
    .nav__hamburger { display: flex; }

    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(20px);
        padding: 24px clamp(20px,5vw,48px);
        gap: 16px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    body.dark-mode .nav__links.open {
        background: rgba(11, 14, 20, 0.97);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .hero__container { grid-template-columns: 1fr; }
    .hero__right { max-width: 500px; margin: 0 auto; }
    .hero__title { font-size: clamp(2rem, 7vw, 3rem); }

    .zigzag__container { grid-template-columns: 1fr; }
    .zigzag--reverse .zigzag__container { direction: ltr; }

    .testimonial-grid { grid-template-columns: 1fr; }
    .cta-section__container { grid-template-columns: 1fr; }
    .footer__top { flex-direction: column; gap: 32px; }
    .footer__links { gap: 48px; }
}

@media (max-width: 768px) {
    /* Mobile Intro Overlay & Video Fit */
    #introOverlay {
        background: #000000;
        padding: 0;
        overflow: hidden;
    }
    #introVideo {
        width: 100vw;
        height: 100vh;
        max-height: -webkit-fill-available;
        object-fit: contain;
        background: #000000;
    }
    .unscramble-overlay {
        width: 92%;
        padding: 0 12px;
    }
    .unscramble-text {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
        letter-spacing: .08em;
    }
    .unscramble-sub {
        font-size: clamp(.68rem, 3.2vw, .85rem);
        letter-spacing: .12em;
    }
    #skipIntro {
        bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        padding: 8px 18px;
        font-size: .75rem;
        background: rgba(0, 0, 0, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(10px);
    }

    /* Mobile Navbar Styling */
    .nav__container {
        padding: 0 16px;
    }
    .nav__right {
        gap: 8px;
    }
    .jazz-music-toggle {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .jazz-label {
        font-size: 0.7rem;
    }

    /* Mobile Hero Layout */
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero__container {
        text-align: center;
        gap: 32px;
    }
    .hero__actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .hero__mascot-3d {
        max-width: 240px;
        margin: 0 auto;
    }

    /* Mobile Interactive Gears Section */
    .interactive-gears {
        height: auto;
        min-height: auto;
        padding: 60px 16px;
    }
    .gears-sticky {
        position: relative;
        top: 0;
        height: auto;
    }
    .gears-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gears-visual {
        min-height: 240px;
        transform: scale(0.85);
        margin: 0 auto;
    }

    /* Mobile Tech Stack Cards Grid */
    .techstack-sticky {
        height: auto;
    }
    .techstack-wrapper {
        position: relative;
        top: 0;
        height: auto;
        padding: 60px 0;
    }
    .tech-cards-container {
        flex-direction: column;
        transform: none !important;
        padding: 0 16px;
        gap: 20px;
    }
    .tech-card-pro {
        min-width: 100%;
        max-width: 100%;
    }

    /* Mobile Sticky Text Reveal */
    .sticky-text-track {
        height: auto;
    }
    .sticky-text-wrapper {
        position: relative;
        top: 0;
        height: auto;
        padding: 40px 16px;
    }
    .sticky-reveal-headline .word {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    /* Mobile Bento Grid & Touch Interactions */
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.wide,
    .bento-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .holo-card:active,
    .btn:active,
    .bento-card:active {
        transform: scale(0.97) !important;
        transition: transform 0.15s ease;
    }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; }
    .marquee__content { font-size: .75rem; }
}

/* ══════════════════════════════════════════
   JAZZ COFFEE AMBIENT AUDIO BUTTON
   ══════════════════════════════════════════ */
.jazz-music-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 197, 21, 0.12);
    border: 1px solid rgba(255, 197, 21, 0.3);
    color: var(--gray-900);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}
body.dark-mode .jazz-music-toggle {
    color: #ffffff;
    background: rgba(255, 197, 21, 0.15);
    border-color: rgba(255, 197, 21, 0.4);
}
.jazz-music-toggle:hover {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 197, 21, 0.4);
}
.jazz-music-toggle.playing {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    box-shadow: 0 0 18px rgba(255, 197, 21, 0.5);
}
.jazz-icon {
    font-size: 1rem;
}
.jazz-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}
.jazz-equalizer span {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 1px;
    transition: height .2s ease;
}
.jazz-music-toggle.playing .jazz-equalizer span:nth-child(1) {
    animation: eqBar 0.6s infinite alternate ease-in-out;
}
.jazz-music-toggle.playing .jazz-equalizer span:nth-child(2) {
    animation: eqBar 0.4s infinite alternate ease-in-out 0.2s;
}
.jazz-music-toggle.playing .jazz-equalizer span:nth-child(3) {
    animation: eqBar 0.8s infinite alternate ease-in-out 0.1s;
}

/* ══════════════════════════════════════════
   FLOATING WHATSAPP CHAT WIDGET
   ══════════════════════════════════════════ */
.wa-widget-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
}

.wa-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
}

.wa-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.wa-chat-box {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.dark-mode .wa-chat-box {
    background: #111520;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.wa-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background: #075E54;
    color: #ffffff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-chat-avatar {
    position: relative;
    width: 42px;
    height: 42px;
}

.wa-chat-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    padding: 2px;
}

.wa-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #075E54;
}

.wa-chat-info h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.wa-chat-info p {
    font-size: 0.72rem;
    opacity: 0.85;
}

.wa-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

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

.wa-chat-body {
    padding: 16px;
    background: #E5DDD5;
    min-height: 100px;
}

body.dark-mode .wa-chat-body {
    background: #0b0e14;
}

.wa-msg-bubble {
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 0 14px 14px 14px;
    max-width: 90%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
}

body.dark-mode .wa-msg-bubble {
    background: #1f2636;
    color: #ffffff;
}

.wa-msg-bubble p {
    font-size: 0.88rem;
    line-height: 1.45;
}

.wa-msg-time {
    display: block;
    font-size: 0.65rem;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.wa-chat-footer {
    padding: 12px;
    background: #ffffff;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.dark-mode .wa-chat-footer {
    background: #111520;
    border-color: rgba(255, 255, 255, 0.08);
}

.wa-chat-footer textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s ease;
}

body.dark-mode .wa-chat-footer textarea {
    background: #1a202c;
    border-color: #2d3748;
    color: #ffffff;
}

.wa-chat-footer textarea:focus {
    border-color: #25D366;
}

.wa-send-btn {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wa-send-btn:hover {
    background: #1eb957;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

@media (max-width: 480px) {
    .wa-widget-container {
        bottom: 20px;
        right: 16px;
    }
    .wa-chat-box {
        right: 0;
        width: calc(100vw - 32px);
    }
}

/* ══════════════════════════════════════════
   TOUCH FINGER GLOW LIGHTS (FINGER TRACKER)
   ══════════════════════════════════════════ */
#touchGlowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99999;
}

/* ══════════════════════════════════════════
   MOBILE NAVBAR & SOUND OVERLAP FIX
   ══════════════════════════════════════════ */
@media (max-width: 680px) {
    .nav__inner {
        padding: 0 12px;
        gap: 8px;
        justify-content: space-between;
    }
    .nav__logo {
        gap: 6px;
        flex-shrink: 0;
    }
    .nav__logo-img {
        height: 28px;
    }
    .nav__logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }
    .jazz-music-toggle {
        padding: 5px 9px;
        font-size: 0.75rem;
        flex-shrink: 0;
        margin-left: auto;
    }
    .jazz-label {
        display: none !important; /* Hide "Som [ ON ]" text on mobile to prevent overlapping STRIXEL logo */
    }
    .jazz-icon {
        font-size: 0.9rem;
    }
}

/* ══════════════════════════════════════════
   MOBILE TECH STACK CARDS FIT & OPTIMIZATION
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .horizontal-tech-section {
        overflow: visible !important;
    }
    .horizontal-tech-track {
        height: auto !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    .horizontal-tech-sticky {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        padding: 40px 0 !important;
        overflow: visible !important;
    }
    .horizontal-tech-wrapper {
        overflow: visible !important;
        white-space: normal !important;
        padding: 16px 0 !important;
    }
    .horizontal-tech-cards {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 16px !important;
        gap: 16px !important;
        box-sizing: border-box !important;
    }
    .tech-card-pro {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 22px 18px !important;
        border-radius: 16px !important;
        flex-shrink: 1 !important;
    }
    .tech-card-pro__badge {
        font-size: 0.62rem !important;
        padding: 3px 10px !important;
        margin-bottom: 12px !important;
    }
    .tech-card-pro__icon {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }
    .tech-card-pro h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    .tech-card-pro p {
        font-size: 0.86rem !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
        white-space: normal !important;
    }
    .tech-card-pro__meta {
        gap: 8px !important;
        padding-top: 12px !important;
    }
    .tech-card-pro__meta span {
        font-size: 0.72rem !important;
        padding: 3px 8px !important;
    }
}

/* ══════════════════════════════════════════
   POCO X7 PRO & MODERN SMARTPHONES OPTIMIZATION (360px - 440px)
   ══════════════════════════════════════════ */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    touch-action: manipulation;
}

@media (max-width: 500px) {
    .nav {
        height: 60px;
    }
    .nav__inner {
        height: 60px !important;
        padding: 0 10px !important;
        gap: 6px !important;
        justify-content: space-between !important;
    }
    .nav__logo {
        gap: 6px !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }
    .nav__logo-img {
        height: 26px !important;
        width: auto !important;
    }
    .nav__logo-text {
        font-size: 0.88rem !important;
        letter-spacing: 0.01em !important;
        white-space: nowrap !important;
    }
    .nav__right {
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    .jazz-music-toggle {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
        border-radius: 16px !important;
        gap: 4px !important;
    }
    .jazz-label {
        display: none !important;
    }
    .jazz-icon {
        font-size: 0.85rem !important;
    }
    .jazz-equalizer {
        height: 10px !important;
    }

    /* Tech Stack Cards for Poco X7 Pro */
    .horizontal-tech-section {
        overflow: visible !important;
    }
    .horizontal-tech-track {
        height: auto !important;
        overflow: visible !important;
        padding: 0 !important;
    }
    .horizontal-tech-sticky {
        position: relative !important;
        height: auto !important;
        padding: 24px 0 !important;
        overflow: visible !important;
    }
    .horizontal-tech-wrapper {
        overflow: visible !important;
        white-space: normal !important;
        padding: 8px 0 !important;
    }
    .horizontal-tech-header {
        padding: 0 12px 12px !important;
    }
    .horizontal-tech-header h2 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }
    .horizontal-tech-header p {
        font-size: 0.84rem !important;
        white-space: normal !important;
    }
    .horizontal-tech-cards {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 12px !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }
    .tech-card-pro {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px 14px !important;
        margin: 0 !important;
        flex-shrink: 1 !important;
    }
    .tech-card-pro h3 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
    }
    .tech-card-pro p {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
        white-space: normal !important;
    }
    .tech-card-pro__meta {
        gap: 6px !important;
        padding-top: 10px !important;
    }
    .tech-card-pro__meta span {
        font-size: 0.68rem !important;
        padding: 2px 7px !important;
    }

    /* Hero section mobile fit */
    .hero__container {
        flex-direction: column !important;
        padding: 0 12px !important;
    }
    .hero__title {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    .hero__body {
        font-size: 0.85rem !important;
    }
    .hero__image-wrap {
        max-width: 100% !important;
    }

    /* Bento grid mobile */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 12px !important;
    }
}

