/* ===========================
   DESIGN TOKENS
=========================== */
:root {
    --orange: #FF5500;
    --orange-light: #FF8000;
    --orange-glow: rgba(255, 85, 0, 0.35);
    --orange-subtle: rgba(255, 85, 0, 0.08);
    --bg: #080808;
    --bg-2: #0e0e0e;
    --card-bg: #111111;
    --card-border: rgba(255, 255, 255, 0.07);
    --white: #ffffff;
    --gray-1: #e5e5e5;
    --gray-2: #a3a3a3;
    --gray-3: #4a4a4a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-card: 24px;
    --radius-pill: 100px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--bg-2);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-2);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 2px;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* CURSOR */
.cursor-dot,
.cursor-outline {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 85, 0, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth), border-color 0.3s ease;
}

/* BG CANVAS */
#bgCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* UTILITIES */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 60%, #ffcc00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 85, 0, .2);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--font);
    cursor: none;
    transition: all 0.35s var(--ease-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-spring);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-light), #ffcc00);
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--orange-glow), 0 0 60px rgba(255, 85, 0, .2);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--orange-subtle);
    color: var(--orange);
    border: 1px solid rgba(255, 85, 0, .3);
    padding: 10px 24px;
    font-size: .875rem;
}

.btn-nav:hover {
    background: var(--orange);
    color: white;
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    transition: all 0.3s ease;
    cursor: none;
}

.btn-text svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-spring);
}

.btn-text:hover {
    color: var(--orange);
    gap: 12px;
}

.btn-text:hover svg {
    transform: translateX(3px);
}

.btn-pill {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .875rem;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: none;
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.05);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, .85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -.03em;
    cursor: none;
}

.logo-orange {
    color: var(--orange);
    font-size: .8rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 500;
    font-size: .9rem;
    color: var(--gray-2);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--white);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 6px;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(255, 85, 0, .12) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 10% 30%, rgba(255, 140, 0, .06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-1);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--card-border);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
    animation: pulse-dot 2s infinite;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray-2);
    max-width: 480px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    max-width: 440px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1;
}

.metric-suffix {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
}

.metric p {
    font-size: .72rem;
    color: var(--gray-2);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
    flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    filter: blur(80px);
    opacity: .2;
    pointer-events: none;
}

.phone-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 85, 0, .12);
}

.ring-1 {
    width: 420px;
    height: 420px;
    animation: ring-spin 20s linear infinite;
}

.ring-2 {
    width: 560px;
    height: 560px;
    animation: ring-spin 30s linear infinite reverse;
    border-color: rgba(255, 85, 0, .07);
}

.ring-3 {
    width: 700px;
    height: 700px;
    animation: ring-spin 40s linear infinite;
    border-color: rgba(255, 85, 0, .04);
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hero-image {
    width: 85%;
    max-width: 380px;
    filter: drop-shadow(0 30px 80px rgba(255, 85, 0, .3)) drop-shadow(0 0 30px rgba(0, 0, 0, .8));
    position: relative;
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg)
    }

    33% {
        transform: translateY(-18px) rotate(1deg)
    }

    66% {
        transform: translateY(-8px) rotate(-.5deg)
    }
}

.floating {
    animation: float 7s ease-in-out infinite;
}

.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(14, 14, 14, .85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
    z-index: 5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    animation: chip-float 5s ease-in-out infinite;
}

.chip-icon {
    font-size: 1rem;
}

.chip-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.chip-2 {
    top: 55%;
    right: -8%;
    animation-delay: -1.5s;
}

.chip-3 {
    bottom: 12%;
    left: 0%;
    animation-delay: -3s;
}

@keyframes chip-float {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-3);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: fade-up 1s ease 1.5s both;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--gray-3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--orange);
    border-radius: 3px;
    animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    100% {
        transform: translateY(12px);
        opacity: 0
    }
}

/* MARQUEE */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    background: var(--bg-2);
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-2), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-2), transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-2);
}

.marquee-dot {
    color: var(--orange) !important;
    font-size: .6rem !important;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* SECTIONS */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray-2);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* APP CARDS */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.app-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease, border-color 0.45s ease;
    cursor: none;
}

.app-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 85, 0, .2);
    border-color: rgba(255, 85, 0, .25);
}

.app-card-featured {
    border-color: rgba(255, 85, 0, .2);
    box-shadow: 0 0 0 1px rgba(255, 85, 0, .1), inset 0 0 60px rgba(255, 85, 0, .03);
}

.app-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.app-card:hover .app-image img {
    transform: scale(1.07);
}

.app-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.app-card:hover .app-image-overlay {
    opacity: 1;
}

.app-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.app-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.app-category {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-top: 4px;
}

.app-rating {
    font-size: .8rem;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245, 158, 11, .1);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.app-desc {
    color: var(--gray-2);
    font-size: .9rem;
    line-height: 1.65;
    flex: 1;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--gray-2);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--card-border);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* STATS */
.section-stats {
    background: var(--bg-2);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-glow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(150px);
    opacity: .06;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 40px 24px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, .02);
    transition: all 0.35s ease;
}

.stat-item:hover {
    border-color: rgba(255, 85, 0, .2);
    background: rgba(255, 85, 0, .04);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.05em;
    background: linear-gradient(135deg, var(--white), var(--orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item p {
    color: var(--gray-2);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .04em;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-subtle) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.value-card:hover {
    border-color: rgba(255, 85, 0, .2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 22px;
    display: block;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.value-card p {
    color: var(--gray-2);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.value-line {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.value-card:hover .value-line {
    width: 80px;
}

/* CONTACT */
.section-contact {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-top: 1px solid var(--card-border);
}

.contact-glow {
    position: absolute;
    width: 800px;
    height: 500px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(180px);
    opacity: .07;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-block .section-label {
    margin-bottom: 24px;
}

.cta-block h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 22px;
    line-height: 1.1;
}

.cta-block p {
    color: var(--gray-2);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

/* FOOTER */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--gray-2);
    font-size: .85rem;
}

.footer-tagline {
    color: var(--gray-3) !important;
    font-size: .8rem !important;
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: var(--gray-2);
    font-size: .875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-links {
    color: var(--gray-2);
    font-size: .8rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-left: 16px;
}

.footer-links:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--gray-2);
    transition: all 0.3s ease;
    cursor: none;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    transform: translateY(-2px);
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="100"] {
    transition-delay: .1s;
}

[data-delay="200"] {
    transition-delay: .2s;
}

[data-delay="300"] {
    transition-delay: .3s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* RESPONSIVE */
@media (max-width:1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width:900px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content p {
        margin: 0 auto 44px;
    }

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

    .hero-metrics {
        margin: 0 auto;
    }

    .hero-visual {
        min-height: 400px;
    }

    .chip-1 {
        top: 5%;
        left: 0%;
    }

    .chip-2 {
        top: 55%;
        right: 0%;
    }

    .chip-3 {
        display: none;
    }

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

    .footer-right {
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width:640px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: rgba(8, 8, 8, .97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 999;
    }

    .nav-links.open .nav-link {
        font-size: 1.5rem;
    }

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

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

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

    .ring-2,
    .ring-3 {
        display: none;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}