/* ===== DESIGN TOKENS ===== */
:root {
    --yellow: #FFC107;
    --yellow-light: #FFF3CD;
    --yellow-dark: #E5AC00;
    --yellow-glow: rgba(255, 193, 7, 0.4);
    --black: #1a1a1a;
    --gray-900: #2d2d2d;
    --gray-600: #6b6b6b;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== CURSOR GLOW (added via JS) ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children animation */
.stagger-children .reveal {
    transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ===== HEADER (Glassmorphism) ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom-color: var(--gray-200);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 22.37%;
    transition: transform var(--spring);
}

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

.nav-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO (Mesh Gradient Background) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 193, 7, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 200, 200, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: mesh-drift 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: mesh-drift 20s ease-in-out infinite reverse;
}

@keyframes mesh-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3%, -2%) scale(1.05); }
    66% { transform: translate(-2%, 3%) scale(0.98); }
}

/* Decorative grid dots */
.hero-grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--yellow-dark) 0%, #ff9800 50%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gray-600);
    transition: all var(--spring);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.badge:hover {
    border-color: var(--yellow);
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.15);
}

.badge svg {
    width: 16px;
    height: 16px;
    color: var(--yellow-dark);
    flex-shrink: 0;
}

.badge--highlight {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: var(--yellow);
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 4px 20px rgba(15, 52, 96, 0.3);
}

.badge--highlight:hover {
    box-shadow: 0 8px 30px rgba(15, 52, 96, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-color: var(--yellow);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--spring);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.btn-primary::before {
    background: linear-gradient(135deg, var(--gray-900), #333);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--black);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--yellow);
    background: var(--yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.15);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== LOGO SHOWCASE (Premium 3D with glow) ===== */
.logo-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    width: 500px;
    height: 500px;
}

/* Pulsating ambient glow behind logo */
.logo-showcase::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 22.37%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.5) 0%, rgba(255, 193, 7, 0.2) 40%, transparent 70%);
    z-index: 1;
    animation: logo-ambient-glow 4s ease-in-out infinite;
    filter: blur(30px);
}

/* Secondary outer glow */
.logo-showcase::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 50%, transparent 70%);
    z-index: 0;
    animation: logo-ambient-glow 4s ease-in-out infinite 1s;
    filter: blur(40px);
}

@keyframes logo-ambient-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.logo-showcase img {
    width: 220px;
    height: auto;
    border-radius: 22.37%;
    filter: drop-shadow(0 10px 30px rgba(255, 193, 7, 0.35))
            drop-shadow(0 30px 60px rgba(255, 193, 7, 0.15));
    animation: logo-float 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
    transition: transform 0.5s var(--spring), filter 0.5s ease;
}

.logo-showcase:hover img {
    filter: drop-shadow(0 15px 40px rgba(255, 193, 7, 0.5))
            drop-shadow(0 40px 80px rgba(255, 193, 7, 0.2));
    transform: translateY(-8px) scale(1.04);
}

/* Pulsating glow rings */
.logo-glow {
    position: absolute;
    border-radius: 50%;
    animation: logo-pulse-ring 4s ease-in-out infinite;
}

.logo-glow:nth-child(2) {
    width: 300px;
    height: 300px;
    border: 1.5px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.05), inset 0 0 20px rgba(255, 193, 7, 0.03);
    animation-delay: 0s;
}

.logo-glow:nth-child(3) {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 193, 7, 0.12);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.04);
    animation-delay: 0.8s;
}

.logo-glow:nth-child(4) {
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 193, 7, 0.06);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.02);
    animation-delay: 1.6s;
}

/* Dual animated gradient rings */
.logo-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: 2;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 193, 7, 0.4) 15%,
        transparent 30%,
        rgba(255, 193, 7, 0.25) 50%,
        transparent 65%,
        rgba(255, 193, 7, 0.3) 80%,
        transparent 100%
    );
    animation: spin-slow 6s linear infinite;
    mask-image: radial-gradient(transparent 58%, black 59%, black 63%, transparent 64%);
    -webkit-mask-image: radial-gradient(transparent 58%, black 59%, black 63%, transparent 64%);
}

/* Second ring rotating opposite direction */
.logo-ring::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        transparent 0%,
        rgba(255, 193, 7, 0.15) 20%,
        transparent 40%,
        rgba(255, 193, 7, 0.1) 60%,
        transparent 80%,
        rgba(255, 193, 7, 0.12) 100%
    );
    animation: spin-slow-reverse 10s linear infinite;
    mask-image: radial-gradient(transparent 55%, black 56%, black 59%, transparent 60%);
    -webkit-mask-image: radial-gradient(transparent 55%, black 56%, black 59%, transparent 60%);
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.logo-particles {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 1;
}

.logo-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 5s ease-in-out infinite;
    box-shadow: 0 0 12px var(--yellow-glow), 0 0 4px var(--yellow);
}

.logo-particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.logo-particle:nth-child(2) { top: 25%; right: 15%; animation-delay: 0.8s; }
.logo-particle:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 1.6s; }
.logo-particle:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 2.4s; }
.logo-particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 3.2s; width: 4px; height: 4px; }
.logo-particle:nth-child(6) { top: 5%; left: 50%; animation-delay: 1.2s; width: 5px; height: 5px; }
.logo-particle:nth-child(7) { top: 40%; right: 8%; animation-delay: 2s; width: 3px; height: 3px; }
.logo-particle:nth-child(8) { bottom: 30%; left: 25%; animation-delay: 3.6s; width: 4px; height: 4px; }

@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(0.8deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-0.8deg); }
}

@keyframes logo-pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.15;
    }
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    15% { opacity: 0.9; transform: translateY(-10px) scale(1.2); }
    50% { opacity: 0.5; transform: translateY(-35px) scale(0.8); }
    85% { opacity: 0.1; transform: translateY(-55px) scale(0.4); }
    100% { opacity: 0; transform: translateY(-70px) scale(0); }
}

/* Hero entrance animation */
.hero-text h1 {
    animation: hero-slide-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-text > p {
    animation: hero-slide-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-badges {
    animation: hero-slide-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.cta-buttons {
    animation: hero-slide-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-visual {
    animation: hero-scale-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes hero-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes hero-scale-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== SECTIONS COMMON ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== FEATURES (Gradient border on hover) ===== */
.features {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--gray-100);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    transition: all var(--spring);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Gradient border glow on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark), transparent, transparent);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    background: var(--yellow-light);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15), 0 0 30px rgba(255, 193, 7, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
    background: var(--yellow-light);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yellow-dark);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== ENTRY TYPES ===== */
.entry-types {
    padding: 5rem 2rem;
    background: var(--gray-100);
}

.entry-types-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.entry-type-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 16px;
    transition: all var(--spring);
    border: 1px solid transparent;
    cursor: default;
}

.entry-type-card:hover {
    background: var(--yellow-light);
    transform: translateY(-6px) scale(1.02);
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(255, 193, 7, 0.12);
}

.entry-type-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--spring);
}

.entry-type-card:hover .entry-type-icon {
    background: var(--white);
    transform: rotate(-8deg) scale(1.1);
}

.entry-type-icon svg {
    width: 26px;
    height: 26px;
    color: var(--yellow-dark);
}

.entry-type-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.entry-type-card p {
    color: var(--gray-600);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* ===== AI SECTION (Glassmorphism code preview) ===== */
.ai-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f1923 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Animated gradient orb */
.ai-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: ai-orb 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ai-orb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.2); }
}

.ai-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.ai-text h2 span {
    background: linear-gradient(135deg, var(--yellow), #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-text > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.ai-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.ai-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-200);
    font-size: 0.95rem;
    transition: transform var(--transition);
}

.ai-benefits li:hover {
    transform: translateX(4px);
}

.ai-benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Glassmorphism code preview */
.ai-code-preview {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.ai-code-preview:hover {
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.05);
}

/* Shimmer effect on code preview */
.ai-code-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.ai-code-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.ai-code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ai-code-dot.red { background: #ff5f56; }
.ai-code-dot.yellow { background: #ffbd2e; }
.ai-code-dot.green { background: #27ca40; }

.ai-code-content {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.ai-code-content .comment { color: var(--gray-600); }
.ai-code-content .keyword { color: var(--yellow); }
.ai-code-content .string { color: #a8e6cf; }

/* Typing cursor for code */
.ai-code-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--yellow);
    animation: blink 1s infinite;
    margin-left: 2px;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== LOCAL INFRA (Enhanced glassmorphism) ===== */
.local-infra {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3e 30%, #0f2847 60%, #0a1628 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.local-infra::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: mesh-drift 20s ease-in-out infinite;
}

.local-infra::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(15, 52, 96, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.local-infra .section-header h2 {
    color: var(--white);
}

.local-infra .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.infra-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.infra-badge svg {
    width: 16px;
    height: 16px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2.5rem auto 0;
}

.infra-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(16px);
    transition: all var(--spring);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient shimmer on hover */
.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.04), transparent);
    transition: left 0.5s;
}

.infra-card:hover::before {
    left: 100%;
}

.infra-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 193, 7, 0.05);
}

.infra-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--spring);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.25);
}

.infra-card:hover .infra-card-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
}

.infra-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--black);
}

.infra-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
}

.infra-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
}

.infra-card ul {
    list-style: none;
    padding: 0;
    position: relative;
}

.infra-card ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.infra-card ul li svg {
    width: 16px;
    height: 16px;
    color: var(--yellow);
    flex-shrink: 0;
}

.infra-highlight {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.02) 100%);
    border-color: rgba(255, 193, 7, 0.2);
    text-align: center;
    padding: 2.5rem;
}

.infra-highlight h3 {
    font-size: 1.3rem;
    color: var(--yellow);
}

.infra-highlight p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ===== TECH HIGHLIGHTS (3D tilt cards) ===== */
.tech-highlights {
    padding: 6rem 2rem;
    background: var(--white);
}

.tech-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: var(--gray-100);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    transition: all var(--spring);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Corner accent */
.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    border-color: var(--yellow);
    background: var(--white);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tech-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--yellow-dark);
    flex-shrink: 0;
    transition: transform var(--spring);
}

.tech-card:hover h3 svg {
    transform: rotate(-10deg) scale(1.15);
}

.tech-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tech-card ul {
    list-style: none;
    margin-top: 0.75rem;
}

.tech-card ul li {
    color: var(--gray-600);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tech-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--yellow-dark);
    font-weight: 600;
}

/* ===== HIGHLIGHTS / STATS (Animated gradient numbers) ===== */
.highlights {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--black) 50%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.highlights .section-header h2 {
    color: var(--white);
}

.highlights .section-header p {
    color: var(--gray-400);
}

.highlights-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.highlight-item {
    padding: 1.25rem;
    transition: transform var(--spring);
}

.highlight-item:hover {
    transform: translateY(-4px);
}

.highlight-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--yellow) 0%, #ff9800 50%, var(--yellow-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.2));
}

.highlight-label {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
    padding: 6rem 2rem;
    background: var(--gray-100);
    overflow: hidden;
}

.screenshots-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    transition: transform var(--spring);
}

.screenshot-item:hover {
    transform: translateY(-8px);
}

.phone-frame {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.25),
        0 8px 24px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    transition: box-shadow var(--transition);
}

.screenshot-item:hover .phone-frame {
    box-shadow:
        0 30px 80px rgba(0,0,0,0.3),
        0 12px 30px rgba(0,0,0,0.2),
        0 0 40px rgba(255, 193, 7, 0.05),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-frame img {
    display: block;
    width: 240px;
    height: auto;
    border-radius: 26px;
}

.screenshot-label {
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.screenshots-hint {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-400);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.screenshots-hint svg {
    width: 18px;
    height: 18px;
    animation: swipe-hint 2s ease-in-out infinite;
}

@keyframes swipe-hint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* ===== DOWNLOAD (Gradient accent) ===== */
.download {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.download-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.download-content p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--spring);
    position: relative;
    overflow: hidden;
}

.store-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.store-btn:hover::before {
    opacity: 1;
}

.store-btn svg {
    width: 26px;
    height: 26px;
}

.store-btn .store-text {
    text-align: left;
}

.store-btn .store-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.store-btn .store-text span {
    font-size: 1.05rem;
    font-weight: 600;
}

.store-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--black) 100%);
    color: var(--white);
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand img {
    height: 44px;
    margin-bottom: 0.75rem;
    border-radius: 22.37%;
    transition: transform var(--spring);
}

.footer-brand img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
    position: relative;
}

.footer-section a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    max-height: 85vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--spring);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

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

.modal-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--gray-100);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--spring);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.75rem;
    overflow-y: auto;
    line-height: 1.8;
}

.modal-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
    color: var(--black);
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p, .modal-body li {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.modal-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.4rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .logo-showcase img {
        width: 200px;
    }

    .logo-glow:nth-child(2) { width: 260px; height: 260px; }
    .logo-glow:nth-child(3) { width: 320px; height: 320px; }
    .logo-glow:nth-child(4) { width: 380px; height: 380px; }
    .logo-ring { width: 240px; height: 240px; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .ai-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-text h2 {
        font-size: 2rem;
    }

    .ai-benefits {
        text-align: left;
    }

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

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

    .infra-highlight {
        grid-column: span 1;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -4px 0 30px rgba(0,0,0,0.15);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

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

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .phone-frame img {
        width: 200px;
    }

    .phone-frame {
        border-radius: 30px;
        padding: 8px;
    }

    .phone-frame::before {
        width: 90px;
        height: 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ai-code-content {
        font-size: 0.72rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-grid-dots {
        display: none;
    }

    .features,
    .entry-types,
    .ai-section,
    .local-infra,
    .tech-highlights,
    .highlights,
    .screenshots,
    .download {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .entry-types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
