/* ================================
   PIIK.ME - PREMIUM LANDING (v2)
   Industry Grade. High Performance.
   ================================ */

:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-accent: #3b82f6; /* Blue-500 */
    --color-accent-glow: rgba(59, 130, 246, 0.5);
    --color-purple: #8b5cf6;
    --color-pink: #ec4899;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-accent);
    color: white;
}

/* ================================
   UTILITIES (Tailwind-like)
   ================================ */

/* Layout */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.w-full { width: 100%; }
.w-px { width: 1px; }
.max-w-full { max-width: 100%; }
.max-w-screen-2xl { max-width: 1536px; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.shrink-0 { flex-shrink: 0; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.tracking-tight { letter-spacing: -0.025em; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05rem; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors & Backgrounds */
.bg-black { background-color: #000; }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-white { background-color: #fff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-800 { color: #1f2937; }
.text-transparent { color: transparent; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-800\/50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-900 { background-color: #111827; }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.from-black { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-white\/10 { --tw-gradient-from: rgba(255, 255, 255, 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.from-gray-900 { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); }
.from-purple-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
.to-gray-500 { --tw-gradient-to: #6b7280; }
.to-transparent { --tw-gradient-to: transparent; }
.to-white\/5 { --tw-gradient-to: rgba(255, 255, 255, 0.05); }
.to-black { --tw-gradient-to: #000; }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }
.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
.grayscale { filter: grayscale(100%); }

/* Custom Accents */
.text-accent { color: var(--color-accent); }
.bg-accent { background-color: var(--color-accent); }
.bg-accent\/10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-accent\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-accent\/30 { background-color: rgba(59, 130, 246, 0.3); }
.bg-accent\/40 { background-color: rgba(59, 130, 246, 0.4); }
.bg-accent\/50 { background-color: rgba(59, 130, 246, 0.5); }
.bg-accent\/60 { background-color: rgba(59, 130, 246, 0.6); }
.border-accent\/50 { border-color: rgba(59, 130, 246, 0.5); }
.text-purple-500 { color: #8b5cf6; }
.bg-purple-500\/20 { background-color: rgba(139, 92, 246, 0.2); }
.bg-purple-500\/30 { background-color: rgba(139, 92, 246, 0.3); }
.text-pink-500 { color: #ec4899; }
.bg-pink-500\/20 { background-color: rgba(236, 72, 153, 0.2); }
.bg-pink-500\/30 { background-color: rgba(236, 72, 153, 0.3); }
.text-blue-400\/80 { color: rgba(96, 165, 250, 0.8); }
.text-blue-500 { color: #3b82f6; }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-blue-500\/30 { background-color: rgba(59, 130, 246, 0.3); }
.text-green-500 { color: #10b981; }
.bg-green-500\/20 { background-color: rgba(16, 185, 129, 0.2); }
.text-red-500\/50 { color: rgba(239, 68, 68, 0.5); }
.bg-violet-600\/10 { background-color: rgba(124, 58, 237, 0.1); }

/* Borders & Radius */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-\[6px\] { border-width: 6px; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-gray-800 { border-color: #1f2937; }
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-sm { border-top-left-radius: 0.125rem; border-top-right-radius: 0.125rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* Effects */
.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-accent\/50 { box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1)); }
.blur-md { filter: blur(12px); }
.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.cursor-move { cursor: move; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.p-\[1px\] { padding: 1px; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.pt-10 { padding-top: 2.5rem; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.delay-75 { transition-delay: 75ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }

/* Transform */
.transform { transform: var(--tw-transform); }
.translate-x-full { --tw-translate-x: 100%; transform: translateX(100%); }
.translate-x-8 { transform: translateX(2rem); }
.translate-y-\[-8\] { transform: translateY(-0.5rem); }
.translate-y-\[20\%\] { transform: translateY(20%); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-\[-15deg\] { transform: rotate(-15deg); }
.scale-110 { transform: scale(1.1); }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.mix-blend-screen { mix-blend-mode: screen; }
.inline-flex { display: inline-flex; }
.group { position: relative; }
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:flex-row { flex-direction: row; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
}

@media (min-width: 1024px) {
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
}

@media (max-width: 767px) {
  .hidden.md\:flex { display: none; }
}

/* ================================
   CUSTOM ANIMATIONS
   ================================ */

.group:hover .group-hover\:text-white { color: #fff; }
.group:hover .group-hover\:border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-40 { opacity: 0.4; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:bg-gray-200 { background-color: #e5e7eb; }
.group:hover .group-hover\:bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.group:hover .group-hover\:bg-pink-500\/30 { background-color: rgba(236, 72, 153, 0.3); }
.group:hover .group-hover\:bg-blue-500\/30 { background-color: rgba(59, 130, 246, 0.3); }
.group:hover .group-hover\:-translate-y-2 { transform: translateY(-0.5rem); }
.group:hover .group-hover\:h-\[60\%\] { height: 60%; }
.group:hover .group-hover\:h-\[80\%\] { height: 80%; }
.group:hover .group-hover\:h-\[50\%\] { height: 50%; }
.group:hover .group-hover\:h-\[90\%\] { height: 90%; }
.group:hover .group-hover\:h-\[75\%\] { height: 75%; }

.hover\:text-white:hover { color: #fff; }
.hover\:text-gray-200:hover { color: #e5e7eb; }
.hover\:border-accent\/50:hover { border-color: rgba(59, 130, 246, 0.5); }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ================================
   SPECIFIC COMPONENTS
   ================================ */

/* Simple Navigation Links (Factory Style) */
.simple-nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.simple-nav-link:hover {
    color: #ffffff;
}

/* Simple Buttons */
.simple-btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #000000;
    background: #ffffff;
    border: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.simple-btn-primary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.simple-btn-secondary {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.simple-btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

/* Navigation Links */
.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #d1d5db;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link-special {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link-special:hover {
    color: #ffffff;
}

.nav-link-special:hover .github-star-count {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* GitHub Link Special Styling */
.nav-link-github {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.875rem;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.625rem;
    transition: all 0.2s ease;
}

.nav-link-github:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-link-github .github-star-count {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link-github:hover .github-star-count {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--color-accent);
}

/* Modern Navigation Buttons */
.nav-btn-primary {
    position: relative;
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--color-accent), var(--color-purple));
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    z-index: 1;
}

.nav-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.nav-btn-secondary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Button Glow Effect */
.btn-primary {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    background-color: var(--color-accent);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Width utilities */
.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }

/* Height utilities */
.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-80 { height: 20rem; }
.h-\[30\%\] { height: 30%; }
.h-\[40\%\] { height: 40%; }
.h-\[50\%\] { height: 50%; }
.h-\[55\%\] { height: 55%; }
.h-\[70\%\] { height: 70%; }

/* Margin & Padding utilities */
.mb-3 { margin-bottom: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.max-w-md { max-width: 28rem; }
.col-span-1 { grid-column: span 1 / span 1; }
.items-baseline { align-items: baseline; }
.items-end { align-items: flex-end; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.object-contain { object-fit: contain; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

/* Position utilities */
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.-bottom-10 { bottom: -2.5rem; }
.-right-10 { right: -2.5rem; }
.top-\[-10\%\] { top: -10%; }
.left-\[-10\%\] { left: -10%; }
.bottom-\[-10\%\] { bottom: -10%; }
.right-\[-10\%\] { right: -10%; }
.w-\[50\%\] { width: 50%; }
.h-\[50\%\] { height: 50%; }
.blur-\[120px\] { filter: blur(120px); }

/* Globe Container Pointer Events */
#globeViz {
    touch-action: none;
}

/* Additional mobile fixes */
@media (max-width: 767px) {
    #globeViz {
        transform: translateY(10%) scale(0.8);
    }
    
    .hero-section {
        min-height: 100vh;
    }
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix overflow issues */
body, html {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent layout shifts */
img {
    max-width: 100%;
    height: auto;
}
