*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

ol,
ul,
menu {
    list-style: none;
}

img,
svg,
video,
canvas {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

button,
input {
    font: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
}

body {
    background-color: #09090b;
    color: #fafafa;
}

[hidden] {
    display: none !important;
}

/* Utilities */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    inset: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-12 {
    bottom: 3rem;
}

.left-1\/2 {
    left: 50%;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.mx-auto {
    margin-inline: auto;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-20 {
    margin-top: 5rem;
}

.-mt-6 {
    margin-top: -1.5rem;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.inline-flex {
    display: inline-flex;
}

.h-screen {
    height: 100vh;
}

.h-full {
    height: 100%;
}

.h-64 {
    height: 16rem;
}

.h-\[500px\] {
    height: 500px;
}

.h-\[1px\] {
    height: 1px;
}

.h-1\.5 {
    height: .375rem;
}

.h-3 {
    height: .75rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.w-full {
    width: 100%;
}

.w-\[1px\] {
    width: 1px;
}

.w-1\.5 {
    width: .375rem;
}

.w-3 {
    width: .75rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-\[80vh\] {
    min-height: 80vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 80rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-md {
    max-width: 28rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.scale-105 {
    scale: 1.05;
}

.-rotate-6 {
    rotate: -6deg;
}

.rotate-12 {
    rotate: 12deg;
}

.rotate-45 {
    rotate: 45deg;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.content-end {
    align-content: flex-end;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-baseline {
    align-items: baseline;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-around {
    justify-content: space-around;
}

.gap-1 {
    gap: .25rem;
}

.gap-2 {
    gap: .5rem;
}

.gap-3 {
    gap: .75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.space-y-6> :not(:last-child) {
    margin-bottom: 1.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.rounded {
    border-radius: .25rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-md {
    border-radius: .375rem;
}

.rounded-lg {
    border-radius: .625rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-transparent {
    border-color: transparent;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, .05);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, .1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, .2);
}

.border-amber-500\/50 {
    border-color: rgba(245, 158, 11, .5);
}

.bg-black {
    background-color: #000;
}

.bg-black\/40 {
    background-color: rgba(0, 0, 0, .4);
}

.bg-black\/80 {
    background-color: rgba(0, 0, 0, .8);
}

.bg-white {
    background-color: #fff;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, .05);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, .1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, .2);
}

.bg-transparent {
    background-color: transparent;
}

.bg-zinc-700 {
    background-color: #3f3f46;
}

.bg-zinc-800 {
    background-color: #27272a;
}

.bg-zinc-900 {
    background-color: #18181b;
}

.bg-zinc-900\/50 {
    background-color: rgba(24, 24, 27, .5);
}

.bg-zinc-950 {
    background-color: #09090b;
}

.bg-zinc-950\/80 {
    background-color: rgba(9, 9, 11, .8);
}

.bg-amber-500\/20 {
    background-color: rgba(245, 158, 11, .2);
}

.bg-amber-500\/\[0\.02\] {
    background-color: rgba(245, 158, 11, .02);
}

.bg-red-500\/50 {
    background-color: rgba(239, 68, 68, .5);
}

.bg-emerald-500\/50 {
    background-color: rgba(16, 185, 129, .5);
}

.bg-emerald-400\/10 {
    background-color: rgba(52, 211, 153, .1);
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--gf, transparent), var(--gv, transparent), var(--gt, transparent));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--gf, transparent), var(--gv, transparent), var(--gt, transparent));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gf, transparent), var(--gt, transparent));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gf, transparent), var(--gv, transparent), var(--gt, transparent));
}

.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--gf, transparent), var(--gt, transparent));
}

/* Manual gradients for specific combos */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, .4), #09090b);
}

.data-overlay {
    background: linear-gradient(to top, #000, rgba(0, 0, 0, .8), transparent);
}

.vehicle-overlay {
    background: linear-gradient(to top, #000, transparent, transparent);
}

.chaos-bg {
    background: linear-gradient(to bottom right, #27272a, #09090b);
}

.logo-gradient {
    background: linear-gradient(to top right, #b45309, #fde047);
}

.amber-line {
    background: linear-gradient(to right, transparent, rgba(245, 158, 11, .3), transparent);
}

.scroll-line {
    background: linear-gradient(to bottom, #a1a1aa, transparent);
}

.amber-text-gradient {
    background: linear-gradient(to right, #fbbf24, #ca8a04);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.big-num-gradient {
    background: linear-gradient(to bottom right, #fff, #e9d5a0, #b45309);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.object-cover {
    object-fit: cover;
}

.object-center {
    object-position: center;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-inline: .5rem;
}

.px-4 {
    padding-inline: 1rem;
}

.px-5 {
    padding-inline: 1.25rem;
}

.px-6 {
    padding-inline: 1.5rem;
}

.px-8 {
    padding-inline: 2rem;
}

.py-1 {
    padding-block: .25rem;
}

.py-2 {
    padding-block: .5rem;
}

.py-3 {
    padding-block: .75rem;
}

.py-4 {
    padding-block: 1rem;
}

.py-32 {
    padding-block: 8rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.text-center {
    text-align: center;
}

.text-xs {
    font-size: .75rem;
    line-height: 1.33;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.43;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.56;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.33;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.2;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.11;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

.text-9xl {
    font-size: 8rem;
    line-height: 1;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.tracking-tight {
    letter-spacing: -.025em;
}

.tracking-tighter {
    letter-spacing: -.05em;
}

.tracking-wide {
    letter-spacing: .025em;
}

.tracking-widest {
    letter-spacing: .1em;
}

.tracking-\[0\.3em\] {
    letter-spacing: .3em;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-transparent {
    color: transparent;
}

.text-zinc-300 {
    color: #d4d4d8;
}

.text-zinc-400 {
    color: #a1a1aa;
}

.text-zinc-500 {
    color: #71717a;
}

.text-zinc-600 {
    color: #52525b;
}

.text-amber-500 {
    color: #f59e0b;
}

.text-amber-500\/80 {
    color: rgba(245, 158, 11, .8);
}

.text-emerald-400 {
    color: #34d399;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-red-600 {
    color: #dc2626;
}

.text-white\/\[0\.03\] {
    color: rgba(255, 255, 255, .03);
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.opacity-20 {
    opacity: .2;
}

.opacity-30 {
    opacity: .3;
}

.opacity-40 {
    opacity: .4;
}

.opacity-50 {
    opacity: .5;
}

.opacity-70 {
    opacity: .7;
}

.mix-blend-screen {
    mix-blend-mode: screen;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.shadow-glow {
    box-shadow: 0 0 15px rgba(245, 158, 11, .2);
}

.blur-1 {
    filter: blur(1px);
}

.grayscale {
    filter: grayscale(100%);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

.backdrop-blur-2xl {
    backdrop-filter: blur(40px);
}

.transition-colors {
    transition: color .15s, background-color .15s, border-color .15s;
}

.transition-transform {
    transition: transform .15s, scale .15s;
}

.transition-all {
    transition: all .15s;
}

.duration-300 {
    transition-duration: .3s;
}

.duration-500 {
    transition-duration: .5s;
}

.select-none {
    user-select: none;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

::selection {
    background-color: rgba(245, 158, 11, .3);
}

/* Hover states */
.hover-white:hover {
    color: #fff;
}

.hover-bg-zinc-200:hover {
    background-color: #e4e4e7;
}

.hover-bg-w10:hover {
    background-color: rgba(255, 255, 255, .1);
}

.hover-bg-w20:hover {
    background-color: rgba(255, 255, 255, .2);
}

.hover-bg-w02:hover {
    background-color: rgba(255, 255, 255, .02);
}

.hover-scale:hover {
    scale: 1.05;
}

.hover-bg-zinc800:hover {
    background-color: rgba(39, 39, 42, .8);
}

.hover-grayscale0:hover {
    filter: grayscale(0);
}

.group:hover .group-hover-amber100 {
    color: #fef3c7;
}

.group:hover .group-hover-amber005 {
    color: rgba(245, 158, 11, .05);
}

.group:hover .group-hover-border-amber {
    border-color: rgba(245, 158, 11, .3);
}

/* Responsive */
@media (min-width:640px) {
    .sm-w-auto {
        width: auto;
    }

    .sm-flex-row {
        flex-direction: row;
    }
}

@media (min-width:768px) {
    .md-flex {
        display: flex;
    }

    .md-hidden {
        display: none;
    }

    .md-block {
        display: block;
    }

    .md-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md-flex-row {
        flex-direction: row;
    }

    .md-justify-end {
        justify-content: flex-end;
    }

    .md-gap-16 {
        gap: 4rem;
    }

    .md-gap-24 {
        gap: 6rem;
    }

    .md-gap-32 {
        gap: 8rem;
    }

    .md-px-12 {
        padding-inline: 3rem;
    }

    .md-p-6 {
        padding: 1.5rem;
    }

    .md-p-12 {
        padding: 3rem;
    }

    .md-text-2xl {
        font-size: 1.5rem;
    }

    .md-text-4xl {
        font-size: 2.25rem;
    }

    .md-text-5xl {
        font-size: 3rem;
    }

    .md-text-6xl {
        font-size: 3.75rem;
    }

    .md-text-7xl {
        font-size: 4.5rem;
    }

    .md-text-9xl {
        font-size: 8rem;
    }

    .md-text-base {
        font-size: 1rem;
    }

    .md-text-sm {
        font-size: .875rem;
    }

    .md-aspect-21-9 {
        aspect-ratio: 21/9;
    }
}

@media (min-width:1024px) {
    .lg-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-text-8xl {
        font-size: 6rem;
    }
}

/* Animations */
@keyframes pulse {
    50% {
        opacity: .5;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.fade-up {
    animation: fadeUp .7s ease-out both;
}

.fade-up-d1 {
    animation-delay: .1s;
}

.fade-up-d2 {
    animation-delay: .2s;
}

.fade-up-d3 {
    animation-delay: .3s;
}

.dot-grid {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .15) 1px, transparent 0);
    background-size: 32px 32px;
}

.line-grid {
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 20px 20px;
}