/* ===========================================
   KENMA LANDING – MOXEY-INSPIRED EDITORIAL
   =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    background: #002222;  /* matches Vanta backgroundColor so no black gap when canvas fades */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===========================================
   VANTA.JS BACKGROUND
   =========================================== */
#vanta-bg {
    position: fixed;
    top: -15vh; left: 0;
    width: 100vw; height: 130vh;
    z-index: 0;
}

/* ===========================================
   TOP NAVIGATION
   =========================================== */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: -webkit-box; display: flex;
    -webkit-box-pack: center; justify-content: center;
    -webkit-box-align: center; align-items: center;
    gap: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-clock {
    position: absolute;
    right: 3rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.7;
    font-variant-numeric: tabular-nums;
}

/* ===========================================
   BOTTOM LOGO (left)
   =========================================== */
.bottom-logo {
    position: fixed;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 100;
}

.bottom-logo img {
    height: 40px;
    width: auto;
    display: block;
    -webkit-filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ===========================================
   BOTTOM TAGLINE (right)
   =========================================== */
.bottom-tagline {
    position: absolute;
    top: calc(100vh - 2.5rem);
    transform: translateY(-100%);
    right: 3rem;
    z-index: 100;
    text-align: right;
}

.bottom-tagline h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ===========================================
   CENTERED ANIMATED LABELS
   =========================================== */
.hero-center-labels {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.hero-label-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: labelFadeInDown 1s ease forwards;
}

.center-main-logo {
    width: 140px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
    -webkit-filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.hero-label-item:nth-child(1) { animation-delay: 0.5s; }
.hero-label-item:nth-child(2) { animation-delay: 2.0s; }
.hero-label-item:nth-child(3) { animation-delay: 3.5s; }
.hero-label-item:nth-child(4) { animation-delay: 5.0s; }

.label-title {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.label-sub {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
}

.connecting-line {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1px;
    height: 0;
    background: rgba(255,255,255,0.3);
    transform: translateX(-50%);
    margin-top: 1rem;
}

.hero-label-item:nth-child(1) .connecting-line {
    animation: drawLine 1s ease forwards;
    animation-delay: 1.0s;
}

.hero-label-item:nth-child(2) .connecting-line {
    animation: drawLine 1s ease forwards;
    animation-delay: 2.5s;
}

.hero-label-item:nth-child(3) .connecting-line {
    animation: drawLine 1s ease forwards;
    animation-delay: 4.0s;
}

@keyframes labelFadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes drawLine {
    to { height: calc(5rem - 2rem); }
}


/* ===========================================
   SCROLL CONTENT SECTIONS
   =========================================== */
.content-section {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 8rem 0;
}

.content-section:first-of-type {
    margin-top: 100vh; /* Push below the hero */
}

.dark-section {
    background: transparent;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 6rem;
    letter-spacing: -1px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.section-heading.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.section-heading em {
    font-style: normal;
    color: #89964e;
}

/* ===========================================
   BENTO GRID (WHAT WE BUILD)
   =========================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    perspective: 1000px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(137, 150, 78, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.bento-icon {
    margin-bottom: 2rem;
    height: 48px;
    display: flex;
    align-items: center;
}

/* Animated SVG Icons */
.bento-svg {
    width: 48px;
    height: 48px;
    stroke: #89964e;
    filter: drop-shadow(0 0 10px rgba(137, 150, 78, 0.4));
    -webkit-filter: drop-shadow(0 0 10px rgba(137, 150, 78, 0.4));
}

/* 1. Web icon: continuous slow rotation */
.anim-web { animation: spin 20s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* 2. Customer service icon: soft floating */
.anim-support { animation: floatIcon 4s ease-in-out infinite; }
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* 3. Sales trending icon: diagonal sliding */
.anim-sales { animation: slideArrow 3s ease-in-out infinite; }
@keyframes slideArrow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4px, -4px); }
}

/* 4. Data chart lines: dynamic scaling heights */
.anim-data-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
}
.anim-data-bars .bar {
    width: 6px;
    background: #89964e;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(137, 150, 78, 0.4);
}
.anim-data-bars .bar1 { animation: dataBounce 1.2s ease-in-out infinite alternate; }
.anim-data-bars .bar2 { animation: dataBounce 1.5s ease-in-out infinite alternate 0.3s; }
.anim-data-bars .bar3 { animation: dataBounce 1s ease-in-out infinite alternate 0.6s; }

@keyframes dataBounce {
    0% { height: 12px; }
    100% { height: 40px; }
}

.bento-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.bento-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    transition: color 0.3s;
}

.bento-list li:hover {
    color: #ffffff;
}

.bento-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 1px;
    color: #89964e;
    font-weight: 800;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===========================================
   STEPS (ABOUT SECTION)
   =========================================== */
.steps-row {
    display: -webkit-box; display: flex;
    -webkit-box-align: start; align-items: flex-start;
    gap: 2rem;
}

.step {
    -webkit-box-flex: 1; flex: 1;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.step-num {
    font-size: 3rem;
    font-weight: 200;
    color: rgba(139, 92, 246, 0.4);
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.step-divider {
    width: 1px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    align-self: center;
    -webkit-flex-shrink: 0; flex-shrink: 0;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-inner {
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.contact-inner.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.contact-text {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: -webkit-box; display: flex;
    -webkit-box-pack: center; justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    -webkit-box-flex: 1; flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #8b5cf6;
}

.form-btn {
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-btn:hover {
    background: #8b5cf6;
    color: #fff;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    position: relative;
    z-index: 10;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 3rem;
    display: -webkit-box; display: flex;
    -webkit-box-pack: center; justify-content: center;
    -webkit-box-align: center; align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-links {
    display: -webkit-box; display: flex;
    gap: 1.5rem;
    position: absolute;
    right: 3rem;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    /* Nav: logo on left, links centered */
    .top-nav {
        gap: 1.5rem;
        padding: 1.2rem 1.5rem;
        -webkit-box-pack: center; justify-content: center;
    }
    .nav-link { font-size: 0.7rem; letter-spacing: 1.5px; }
    .nav-clock { display: none; }

    /* Hero fixed elements become STATIC on mobile */
    .bottom-tagline {
        position: absolute;
        top: calc(100vh - 6rem);
        transform: translateY(-100%);
        bottom: auto;
        right: 1.5rem;
        left: 1.5rem;
        text-align: left;
    }
    .bottom-tagline h1 { font-size: 2rem; }

    .bottom-logo {
        position: absolute;
        left: 1.5rem;
        bottom: 2rem;
    }
    .bottom-logo img { height: 28px; }

    /* Scale center labels on small screens instead of hiding them */
    .hero-center-labels { 
        display: flex; 
        transform: translate(-50%, -45%) scale(0.75); 
        width: 100vw;
    }

    /* Content sections */
    .section-inner { padding: 0 1.5rem; }
    .section-heading { font-size: 2.2rem; margin-bottom: 2.5rem; }

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

    .bento-card { padding: 2rem; }

    .steps-row {
        -webkit-box-orient: vertical; flex-direction: column;
    }
    .step-divider { width: 60px; height: 1px; align-self: flex-start; }

    .content-section { padding: 5rem 0; }

    .contact-form {
        -webkit-box-orient: vertical; flex-direction: column;
    }
    .form-input { padding: 1rem 1.2rem; }

    .site-footer {
        -webkit-box-orient: vertical; flex-direction: column;
        gap: 1rem; text-align: center;
        padding: 2rem 1.5rem;
    }
    .footer-links {
        position: relative;
        right: auto;
    }
}

/* ===========================================
   ANIMATED SVG LOGO
   =========================================== */
.animated-logo-svg {
    height: 50px;
    width: auto;
    overflow: visible;
}

.animated-logo-svg path {
    fill-opacity: 0;
    stroke: #ffffff;
    stroke-width: 6px;
    stroke-dasharray: 6000;
    stroke-dashoffset: 6000;
    animation: draw-logo 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards, fill-logo 0.3s 0.4s ease forwards;
}

@keyframes draw-logo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-logo {
    to {
        fill-opacity: 1;
        stroke-width: 0;
    }
}

/* ===========================================
   TAILWIND UTILITY REPLACEMENTS (Hero tree)
   =========================================== */
.tree-node {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.rounded-full { border-radius: 9999px; }
.border-2 { border-width: 2px; }
.border { border-width: 1px; border-style: solid; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-500 { background-color: #6366f1; }
.bg-slate-800 { background-color: #1e293b; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }

.border-indigo-300 { border-color: #a5b4fc; }
.border-orange-500 { border-color: #f97316; }
.border-pink-500 { border-color: #ec4899; }
.border-blue-400 { border-color: #60a5fa; }
.border-emerald-400 { border-color: #34d399; }
.border-purple-400 { border-color: #c084fc; }
.border-yellow-400 { border-color: #facc15; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }

.text-white { color: #ffffff; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-orange-400 { color: #fb923c; }
.text-indigo-400 { color: #818cf8; }
.text-pink-400 { color: #f472b6; }
.text-blue-400 { color: #60a5fa; }
.text-emerald-400 { color: #34d399; }
.text-purple-400 { color: #c084fc; }
.text-yellow-400 { color: #facc15; }
.text-\[10px\] { font-size: 10px; }
.text-\[9px\] { font-size: 9px; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.15em; }
.whitespace-nowrap { white-space: nowrap; }

.mt-3 { margin-top: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }

.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.opacity-30 { opacity: 0.3; }
.transition-all { transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.shadow-\[0_0_30px_rgba\(79\,70\,229\,0\.5\)\] {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}
.shadow-\[0_0_15px_rgba\(249\,115\,22\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(249\,115\,22\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.shadow-\[0_0_15px_rgba\(129\,140\,248\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(129\,140\,248\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.6);
}

.shadow-\[0_0_15px_rgba\(236\,72\,153\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(236\,72\,153\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.shadow-\[0_0_15px_rgba\(96\,165\,250\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(96\,165\,250\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.shadow-\[0_0_15px_rgba\(52\,211\,153\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(52\,211\,153\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.6);
}

.shadow-\[0_0_15px_rgba\(192\,132\,252\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(192\,132\,252\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.6);
}

.shadow-\[0_0_15px_rgba\(250\,204\,21\,0\.3\)\] {
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
}
.group:hover .group-hover\:shadow-\[0_0_20px_rgba\(250\,204\,21\,0\.6\)\] {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.6);
}

@media (min-width: 768px) {
    .md\:w-20 { width: 5rem; }
    .md\:h-20 { height: 5rem; }
    .md\:w-12 { width: 3rem; }
    .md\:h-12 { height: 3rem; }
    .md\:text-xs { font-size: 0.75rem; }
    .md\:text-\[10px\] { font-size: 10px; }
}

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2.-translate-y-1\/2 {
    transform: translate(-50%, -50%);
}

/* ===========================================
   TAILWIND UTILITY REPLACEMENTS (Hero section & tree layout)
   =========================================== */

/* Grid & Layout Utilities */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-7xl { max-width: 80rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-\[540px\] { max-width: 540px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-16 { gap: 4rem; }
.gap-4 { gap: 1rem; }
.gap-2 { gap: 0.5rem; }

.pt-10 { padding-top: 7.5rem; }
.mt-8 { margin-top: 2rem; }
.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; }

.h-\[480px\] { height: 480px; }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* Sizing & Positioning */
.absolute { position: absolute; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.cursor-pointer { cursor: pointer; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }

/* Tree Node Positioning (Arbitrary Percentages) */
.top-\[24\%\] { top: 24%; }
.top-\[30\%\] { top: 30%; }
.top-\[56\%\] { top: 56%; }
.top-\[64\%\] { top: 64%; }
.top-\[88\%\] { top: 88%; }

.left-\[14\%\] { left: 14%; }
.left-\[26\%\] { left: 26%; }
.left-\[36\%\] { left: 36%; }
.left-\[50\%\] { left: 50%; }
.left-\[64\%\] { left: 64%; }
.left-\[74\%\] { left: 74%; }
.left-\[86\%\] { left: 86%; }

/* Translate & Transform Utilities */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-x-1\/2.-translate-y-1\/2 { transform: translate(-50%, -50%); }

/* Typography Utilities */
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[9px\] { font-size: 9px; }
.font-semibold { font-weight: 600; }

/* Borders & Colors */
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-indigo-400 { border-color: #818cf8; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }

/* Animation Duration */
.duration-1000 { animation-duration: 1000ms; }

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

@media (min-width: 768px) {
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .md\:h-\[560px\] { height: 560px; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:pt-0 { padding-top: 0; }
    .lg\:mt-0 { margin-top: 0; }
}

/* Custom SVG / Document Animations (stubs to prevent console issues or broken properties) */
.anim-copy { animation: none; }
.anim-scan { animation: scanMove 2s linear infinite alternate; }
.doc-back { transform: translate(-2px, -2px); }
.tree-container { position: relative; width: 100%; height: 100%; max-width: 540px; margin: 0 auto; }
.ille-contact-form { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; }

