* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */

.header-container { position: relative; width: 100%; min-height: 100vh; overflow: hidden; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.video-background video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%; width: auto; height: auto;
    transform: translate(-50%, -50%); object-fit: cover; opacity: 0.8;
}
.overlay-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.8)); z-index: 1;
}
.content { position: relative; z-index: 10; width: 100%; height: 100%; display: flex; flex-direction: column; }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; z-index: 100; }
@media (min-width: 768px) { .navbar { padding: 2rem 3rem; } }
.logo { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.logo-svg { width: 2.5rem; height: 2.5rem; }
@media (min-width: 768px) { .logo-svg { width: 3rem; height: 3rem; } }
.logo-text { color: white; font-size: 1.125rem; font-weight: bold; }
@media (min-width: 640px) { .logo-text { display: inline; font-size: 1.25rem; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link { color: #d1d5db; text-decoration: none; transition: color 0.3s ease; font-size: 1rem; }
.nav-link:hover { color: white; }

.menu-toggle { display: flex; flex-direction: column; gap: 0.4rem; background: none; border: none; cursor: pointer; z-index: 101; }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 1.75rem; height: 0.2rem; background-color: white; transition: all 0.3s ease; border-radius: 0.1rem; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(0.6rem, 0.6rem); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(0.5rem, -0.5rem); }

.nav-mobile { display: none; position: absolute; top: 5rem; left: 0; right: 0; background-color: rgba(0,0,0,0.95); border-bottom: 1px solid rgba(234,88,12,0.3); padding: 1.5rem; flex-direction: column; gap: 1rem; z-index: 99; }
.nav-mobile.active { display: flex; }
.nav-mobile .nav-link { display: block; padding: 0.5rem 0; }

.btn-signup { padding: 0.5rem 1.5rem; background-color: #ea580c; color: white; border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; }
.btn-signup:hover { background-color: #b8440a; }
.nav-mobile .btn-signup { width: 100%; padding: 0.75rem; }

.hero { flex: 1; display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; text-align: center; }
@media (min-width: 768px) { .hero { padding: 0 3rem; } }
.hero-content { max-width: 56rem; animation: fadeIn 1s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-title { font-size: 2rem; font-weight: bold; background: linear-gradient(to right, #f97316, #dc2626, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-subtitle { color: #d1d5db; font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.4rem; margin-bottom: 2.5rem; } }

.info-boxes { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .info-boxes { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .info-boxes { grid-template-columns: repeat(3, 1fr); } }
.info-box { border: 1px solid rgba(234,88,12,0.3); border-radius: 0.5rem; padding: 1rem 1.5rem; backdrop-filter: blur(10px); background-color: rgba(234,88,12,0.05); transition: background-color 0.3s ease; }
.info-box:hover { background-color: rgba(234,88,12,0.1); }
@media (min-width: 768px) { .info-box { padding: 1.5rem 2rem; } }
.info-box:nth-child(3) { grid-column: 1 / -1; }
@media (min-width: 1024px) { .info-box:nth-child(3) { grid-column: auto; } }
.info-number { color: #ea580c; font-size: 1.875rem; font-weight: bold; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .info-number { font-size: 2rem; } }
.info-label { color: #d1d5db; font-size: 0.875rem; }
@media (min-width: 768px) { .info-label { font-size: 1rem; } }

.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.btn-primary { padding: 0.75rem 2rem; background: linear-gradient(to right, #ea580c, #dc2626); color: white; border: none; border-radius: 0.5rem; font-weight: bold; font-size: 1rem; cursor: pointer; transition: transform 0.3s ease; }
@media (min-width: 768px) { .btn-primary { padding: 1rem 2.5rem; font-size: 1.125rem; } }
.btn-primary:hover { transform: scale(1.05); }
.btn-secondary { padding: 0.75rem 2rem; border: 2px solid #ea580c; color: #f97316; background-color: transparent; border-radius: 0.5rem; font-weight: bold; font-size: 1rem; cursor: pointer; transition: background-color 0.3s ease; }
@media (min-width: 768px) { .btn-secondary { padding: 1rem 2.5rem; font-size: 1.125rem; } }
.btn-secondary:hover { background-color: rgba(234,88,12,0.1); }

.scroll-indicator { position: absolute; bottom: 0.5rem; left: 50%; transform: translateX(-50%); text-align: center; z-index: 20; }
.scroll-text { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.5rem; }
.scroll-arrow { width: 1.5rem; height: 1.5rem; color: #ea580c; margin: 0 auto; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }


/* ============================================
   WHY AUTOMATION SECTION
   ============================================ */

.why-auto {
    position: relative;
    background: #050508;
    padding: 100px 24px 80px;
    overflow: hidden;
    z-index: 15;
}

/* Subtle grid background */
.why-auto__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(234,88,12,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234,88,12,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-auto__noise {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- TOP HERO: Title + Visual ---- */

.why-auto__hero {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

@media (min-width: 960px) {
    .why-auto__hero {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

/* Text block */
.why-auto__text {
    flex: 1;
    min-width: 0;
}

.why-auto__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ea580c;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 1px solid rgba(234,88,12,0.25);
    border-radius: 100px;
    background: rgba(234,88,12,0.06);
}

.why-auto__label-dot {
    width: 6px;
    height: 6px;
    background: #ea580c;
    border-radius: 50%;
    animation: wa-dotPulse 2s ease-in-out infinite;
}

@keyframes wa-dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234,88,12,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(234,88,12,0); }
}

.why-auto__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #e8eaf0;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.why-auto__title-gradient {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 40%, #ea580c 70%, #f97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wa-gradientShift 4s ease-in-out infinite;
}

@keyframes wa-gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.why-auto__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #9ca3af;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Stats row */
.why-auto__stats {
    display: flex;
    gap: 32px;
}

.why-auto__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-auto__stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ea580c;
    line-height: 1;
}

.why-auto__stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    max-width: 160px;
}

/* ---- NEURAL NETWORK VISUAL ---- */

.why-auto__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.wa-network {
    position: relative;
    width: 320px;
    height: 320px;
}

@media (min-width: 768px) {
    .wa-network {
        width: 380px;
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .wa-network {
        width: 400px;
        height: 400px;
    }
}

/* Connection lines */
.wa-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wa-line {
    stroke: rgba(234,88,12,0.12);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: wa-lineDash 20s linear infinite;
}

.wa-line:nth-child(2n) {
    animation-direction: reverse;
    stroke: rgba(255,204,102,0.08);
}

@keyframes wa-lineDash {
    to { stroke-dashoffset: -200; }
}

/* Nodes */
.wa-node {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
}

.wa-node svg {
    width: 50%;
    height: 50%;
}

.wa-node--center {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234,88,12,0.2) 0%, rgba(234,88,12,0.05) 70%);
    border: 1.5px solid rgba(234,88,12,0.4);
    color: #f97316;
    box-shadow: 0 0 40px rgba(234,88,12,0.15), inset 0 0 20px rgba(234,88,12,0.05);
    animation: wa-centerPulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .wa-node--center {
        width: 90px;
        height: 90px;
    }
}

@keyframes wa-centerPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(234,88,12,0.15), inset 0 0 20px rgba(234,88,12,0.05); }
    50% { box-shadow: 0 0 60px rgba(234,88,12,0.25), inset 0 0 30px rgba(234,88,12,0.1); }
}

.wa-node--orbit {
    width: 52px;
    height: 52px;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    color: #9ca3af;
    backdrop-filter: blur(8px);
    transition: border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
    .wa-node--orbit {
        width: 58px;
        height: 58px;
    }
}

.wa-node--orbit:hover {
    border-color: rgba(234,88,12,0.4);
    color: #f97316;
    box-shadow: 0 0 20px rgba(234,88,12,0.15);
}

/* Position orbital nodes in a hexagonal pattern */
.wa-node--o1 { top: 2%;  left: 50%; transform: translateX(-50%); animation: wa-float1 6s ease-in-out infinite; }
.wa-node--o2 { top: 18%; right: 2%; animation: wa-float2 7s ease-in-out infinite; }
.wa-node--o3 { bottom: 18%; right: 2%; animation: wa-float3 5.5s ease-in-out infinite; }
.wa-node--o4 { bottom: 2%; left: 50%; transform: translateX(-50%); animation: wa-float4 6.5s ease-in-out infinite; }
.wa-node--o5 { bottom: 18%; left: 2%; animation: wa-float5 7.5s ease-in-out infinite; }
.wa-node--o6 { top: 18%; left: 2%; animation: wa-float6 5s ease-in-out infinite; }

@keyframes wa-float1 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes wa-float2 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-6px) translateX(5px); } }
@keyframes wa-float3 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(7px) translateX(4px); } }
@keyframes wa-float4 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes wa-float5 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(5px) translateX(-6px); } }
@keyframes wa-float6 { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-7px) translateX(-4px); } }

/* Pulse rings */
.wa-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(234,88,12,0.15);
    pointer-events: none;
    z-index: 0;
}

.wa-pulse--1 { width: 140px; height: 140px; animation: wa-pulseFade 4s ease-out infinite; }
.wa-pulse--2 { width: 220px; height: 220px; animation: wa-pulseFade 4s ease-out 1.3s infinite; }
.wa-pulse--3 { width: 300px; height: 300px; animation: wa-pulseFade 4s ease-out 2.6s infinite; }

@media (min-width: 768px) {
    .wa-pulse--1 { width: 160px; height: 160px; }
    .wa-pulse--2 { width: 260px; height: 260px; }
    .wa-pulse--3 { width: 350px; height: 350px; }
}

@keyframes wa-pulseFade {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

/* Data particles traveling along paths */
.wa-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ea580c;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(234,88,12,0.6), 0 0 16px rgba(234,88,12,0.3);
    z-index: 4;
    pointer-events: none;
}

.wa-particle--1 { animation: wa-travel1 3s ease-in-out infinite; }
.wa-particle--2 { animation: wa-travel2 3.5s ease-in-out 0.5s infinite; }
.wa-particle--3 { animation: wa-travel3 4s ease-in-out 1s infinite; }
.wa-particle--4 { animation: wa-travel4 3.2s ease-in-out 1.5s infinite; }
.wa-particle--5 { animation: wa-travel5 3.8s ease-in-out 2s infinite; }

@keyframes wa-travel1 {
    0%, 100% { top: 50%; left: 50%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    95% { top: 5%; left: 50%; opacity: 0; }
}
@keyframes wa-travel2 {
    0%, 100% { top: 50%; left: 50%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    95% { top: 22%; right: 5%; left: auto; opacity: 0; }
}
@keyframes wa-travel3 {
    0%, 100% { top: 50%; left: 50%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    95% { bottom: 22%; right: 5%; top: auto; left: auto; opacity: 0; }
}
@keyframes wa-travel4 {
    0%, 100% { top: 50%; left: 50%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    95% { bottom: 5%; left: 50%; top: auto; opacity: 0; }
}
@keyframes wa-travel5 {
    0%, 100% { top: 50%; left: 50%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    95% { bottom: 22%; left: 5%; top: auto; opacity: 0; }
}


/* ---- BENEFITS GRID ---- */

.why-auto__benefits {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .why-auto__benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .why-auto__benefits {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

.wa-benefit {
    position: relative;
    background: rgba(12, 12, 18, 0.9);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 28px 22px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.wa-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(234,88,12,0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wa-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(234,88,12,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(234,88,12,0.05);
}

.wa-benefit:hover::before {
    opacity: 1;
}

.wa-benefit__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(234,88,12,0.08);
    border: 1px solid rgba(234,88,12,0.15);
    margin-bottom: 16px;
    color: #ea580c;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.wa-benefit:hover .wa-benefit__icon {
    background: rgba(234,88,12,0.15);
    box-shadow: 0 0 16px rgba(234,88,12,0.1);
}

.wa-benefit__icon svg {
    width: 20px;
    height: 20px;
}

.wa-benefit h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e8eaf0;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.wa-benefit p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #6b7280;
    margin: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .wa-benefit {
        padding: 32px 26px;
    }
    .wa-benefit h3 {
        font-size: 0.9rem;
    }
    .wa-benefit p {
        font-size: 0.88rem;
    }
}

@media (min-width: 1024px) {
    .wa-benefit {
        padding: 26px 18px;
    }
    .wa-benefit h3 {
        font-size: 0.78rem;
    }
    .wa-benefit p {
        font-size: 0.78rem;
    }
    .wa-benefit__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
    }
    .wa-benefit__icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ---- CTA BUTTON ---- */

.why-auto__cta {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
}

.why-auto__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(234,88,12,0.25);
    position: relative;
    overflow: hidden;
}

.why-auto__cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-auto__cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(234,88,12,0.35);
}

.why-auto__cta-btn:hover::before {
    opacity: 1;
}

.why-auto__cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.why-auto__cta-btn:hover svg {
    transform: translateX(4px);
}

/* ---- REVEAL ANIMATION ---- */

.wa-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.wa-reveal.wa-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .why-auto {
        padding: 70px 16px 60px;
    }
    .why-auto__hero {
        margin-bottom: 50px;
        gap: 40px;
    }
    .why-auto__desc {
        font-size: 0.95rem;
    }
    .why-auto__stats {
        flex-direction: column;
        gap: 20px;
    }
    .wa-network {
        width: 260px;
        height: 260px;
    }
    .wa-node--center {
        width: 64px;
        height: 64px;
    }
    .wa-node--orbit {
        width: 42px;
        height: 42px;
    }
    .why-auto__cta-btn {
        padding: 14px 28px;
        font-size: 0.82rem;
    }
}




/* ============================================
   EXTRA AUTOMATION POSSIBILITIES
   ============================================ */

.xtra-section {
    position: relative;
    z-index: 15;
    background: #060610;
    padding: 0 24px 100px;
    overflow: hidden;
}

/* Circuit-board background pattern */
.xtra-circuit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image:
        /* Horizontal traces */
        linear-gradient(0deg, transparent 49.5%, rgba(234,88,12,0.025) 49.5%, rgba(234,88,12,0.025) 50.5%, transparent 50.5%),
        /* Vertical traces */
        linear-gradient(90deg, transparent 49.5%, rgba(234,88,12,0.025) 49.5%, rgba(234,88,12,0.025) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

/* Ambient glow spots */
.xtra-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234,88,12,0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.xtra-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.xtra-noise {
    position: absolute;
    inset: 0;
    opacity: 0.018;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- TOP DIVIDER ---- */

.xtra-divider-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 60px;
    padding-top: 80px;
}

.xtra-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234,88,12,0.25), transparent);
}

.xtra-divider-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(234,88,12,0.5);
    white-space: nowrap;
    text-transform: uppercase;
}

/* ---- HEADER ---- */

.xtra-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 660px;
    margin: 0 auto 64px;
}

.xtra-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ea580c;
    padding: 7px 16px;
    border: 1px solid rgba(234,88,12,0.2);
    border-radius: 100px;
    background: rgba(234,88,12,0.05);
    margin-bottom: 24px;
}

.xtra-badge svg {
    flex-shrink: 0;
}

.xtra-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #e8eaf0;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.xtra-title-accent {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 50%, #ea580c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: xtra-gradShift 5s ease-in-out infinite;
}

@keyframes xtra-gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.xtra-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- CARDS GRID ---- */

.xtra-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 540px) {
    .xtra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (min-width: 960px) {
    .xtra-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* ---- INDIVIDUAL CARD ---- */

.xtra-card {
    position: relative;
    background: rgba(10, 10, 18, 0.95);
    border-radius: 18px;
    padding: 32px 24px 28px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Animated border (gradient ring on hover) */
.xtra-card-border {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(234,88,12,0.0) 0%, rgba(234,88,12,0.0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.5s ease;
    z-index: 2;
}

.xtra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: 1;
    transition: border-color 0.4s ease;
}

/* Shine sweep on hover */
.xtra-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(234,88,12,0.04) 45%, rgba(234,88,12,0.08) 50%, rgba(234,88,12,0.04) 55%, transparent 60%);
    pointer-events: none;
    z-index: 3;
    transition: none;
}

.xtra-card:hover {
    transform: translateY(-6px);
}

.xtra-card:hover::before {
    border-color: rgba(234,88,12,0.2);
}

.xtra-card:hover .xtra-card-border {
    background: linear-gradient(160deg, rgba(234,88,12,0.3) 0%, rgba(220,38,38,0.1) 50%, rgba(234,88,12,0.0) 100%);
}

.xtra-card:hover .xtra-card-shine {
    left: 150%;
    transition: left 0.8s ease;
}

/* Card icon */
.xtra-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(234,88,12,0.06);
    border: 1px solid rgba(234,88,12,0.1);
    color: #ea580c;
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.xtra-card-icon svg {
    width: 22px;
    height: 22px;
}

.xtra-card:hover .xtra-card-icon {
    background: rgba(234,88,12,0.12);
    box-shadow: 0 0 24px rgba(234,88,12,0.12), 0 0 48px rgba(234,88,12,0.04);
    transform: scale(1.08);
}

/* Special icon variant - AI glow */
.xtra-card-icon--ai {
    border-color: rgba(234,88,12,0.18);
}

.xtra-card:hover .xtra-card-icon--ai {
    box-shadow: 0 0 24px rgba(234,88,12,0.18), 0 0 60px rgba(234,88,12,0.06);
}

/* Card title */
.xtra-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e8eaf0;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    line-height: 1.35;
    position: relative;
    z-index: 4;
}

/* Card description */
.xtra-card-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 16px;
    position: relative;
    z-index: 4;
}

/* Micro-tag at bottom */
.xtra-card-tag {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(234,88,12,0.45);
    padding: 4px 10px;
    border: 1px solid rgba(234,88,12,0.1);
    border-radius: 6px;
    background: rgba(234,88,12,0.03);
    position: relative;
    z-index: 4;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.xtra-card:hover .xtra-card-tag {
    color: rgba(234,88,12,0.7);
    border-color: rgba(234,88,12,0.2);
}

/* ---- FOOTER LINE ---- */

.xtra-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 56px auto 0;
}

.xtra-footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234,88,12,0.15), transparent);
}

.xtra-footer-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #4b5563;
    white-space: nowrap;
    text-align: center;
}

/* ---- REVEAL ANIMATIONS ---- */

.xtra-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.xtra-reveal.xtra-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (min-width: 960px) {
    .xtra-card {
        padding: 30px 22px 26px;
    }
    .xtra-card-title {
        font-size: 0.82rem;
    }
    .xtra-card-desc {
        font-size: 0.82rem;
    }
}

@media (min-width: 1200px) {
    .xtra-section {
        padding-bottom: 120px;
    }
    .xtra-card {
        padding: 36px 26px 30px;
    }
    .xtra-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 22px;
    }
    .xtra-card-icon svg {
        width: 24px;
        height: 24px;
    }
    .xtra-card-title {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }
    .xtra-card-desc {
        font-size: 0.88rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 539px) {
    .xtra-section {
        padding: 0 16px 70px;
    }
    .xtra-divider-top {
        padding-top: 60px;
        margin-bottom: 40px;
    }
    .xtra-header {
        margin-bottom: 40px;
    }
    .xtra-subtitle {
        font-size: 0.92rem;
    }
    .xtra-card {
        padding: 26px 20px 22px;
        border-radius: 14px;
    }
    .xtra-card-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .xtra-card-icon svg {
        width: 20px;
        height: 20px;
    }
    .xtra-card-title {
        font-size: 0.82rem;
    }
    .xtra-card-desc {
        font-size: 0.82rem;
    }
    .xtra-footer-text {
        font-size: 0.62rem;
        white-space: normal;
        text-align: center;
    }
}


/* ============================================
   LIGHT GRADIENT SECTION
   ============================================ */

.light-section { position: relative; background-color: #000000; }
.light-container { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100vh; pointer-events: none; z-index: 10; opacity: 0; transition: opacity 0.4s ease; }
.light-container.visible { opacity: 1; }
.light { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 800px; background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0,255,100,0.6) 0%, rgba(0,255,100,0.3) 15%, rgba(0,255,100,0.15) 35%, rgba(0,255,100,0.05) 60%, transparent 100%); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; filter: blur(60px); }


/* ============================================
   TYPEWRITER
   ============================================ */

.typewriter-wrapper { position: relative; z-index: 15; text-align: center; padding: 80px 20px 20px; min-height: 180px; display: flex; align-items: center; justify-content: center; }
.typewriter-title { font-size: 2.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.3; }
.typewriter-title #typewriterText { background: linear-gradient(to right, #00ff64, #00cc88, #00ffaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.typewriter-cursor { display: inline-block; color: #00ff64; font-weight: 300; animation: blink 0.7s step-end infinite; margin-left: 2px; -webkit-text-fill-color: #00ff64; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (min-width: 640px) { .typewriter-title { font-size: 3rem; } }
@media (min-width: 1024px) { .typewriter-title { font-size: 3.75rem; } .typewriter-wrapper { min-height: 220px; padding: 100px 40px 30px; } }
@media (max-width: 480px) { .typewriter-title { font-size: 1.75rem; } .typewriter-wrapper { min-height: 140px; padding: 60px 15px 15px; } }


/* ============================================
   LIGHT CONTENT & ACCORDION CARDS
   ============================================ */

.light-content { position: relative; z-index: 1; padding: 40px 20px; max-width: 800px; margin: 0 auto; }

.paragraph {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    margin: 40px 0;
    font-size: 18px;
    line-height: 1.8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Ripple overlay */
.paragraph::before {
    content: '';
    position: absolute;
    top: var(--ripple-y, 50%);
    left: var(--ripple-x, 50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 204, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

.paragraph.ripple::before {
    animation: rippleExpand 0.6s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

/* Hover e stato aperto */
.paragraph:hover {
    border-color: rgba(255, 204, 102, 0.2);
}

.paragraph.open {
    border-color: rgba(255, 204, 102, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 204, 102, 0.05);
}

/* Header cliccabile */
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 35px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: padding 0.4s ease;
}

.paragraph.open .accordion-header {
    padding-bottom: 15px;
}

.accordion-header h2 {
    font-size: 24px;
    color: #ffcc66;
    margin: 0;
    transition: color 0.3s ease;
    pointer-events: none;
}

.paragraph:hover .accordion-header h2 {
    color: #ffd780;
}

/* Icona + / × */
.accordion-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: #ffcc66;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.accordion-icon span:first-child {
    transform: translate(-50%, -50%);
}

.accordion-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Quando aperto: + diventa – */
.paragraph.open .accordion-icon span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.paragraph.open .accordion-icon span:first-child {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Body accordion */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.paragraph.open .accordion-body {
    max-height: 500px;
}

.accordion-body-inner {
    padding: 0 35px 30px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.paragraph.open .accordion-body-inner {
    opacity: 1;
    transform: translateY(0);
}

.accordion-body-inner p {
    margin: 12px 0;
    text-align: justify;
    color: #ccc;
}

/* Active press effect (touch/click) */
.paragraph.pressing {
    transform: scale(0.985);
    transition: transform 0.15s ease;
}

.paragraph:not(.pressing) {
    transform: scale(1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 22px 25px;
    }
    .accordion-header h2 {
        font-size: 20px;
    }
    .accordion-body-inner {
        padding: 0 25px 22px;
    }
    .paragraph {
        margin: 30px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .accordion-header h2 {
        font-size: 17px;
    }
    .accordion-icon {
        width: 24px;
        height: 24px;
    }
    .accordion-icon span {
        width: 14px;
    }
}


/* ============================================
   CORE TITLE SECTION
   ============================================ */

.core-title-section { position: relative; width: 100%; padding: 100px 24px 90px; background: #0a0a12; overflow: hidden; display: flex; align-items: center; justify-content: center; }

.core-bg-grid { position: absolute; inset: 0; pointer-events: none; z-index: 0; background-image: linear-gradient(rgba(0,229,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 10%, transparent 70%); }

.core-bg-noise { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.core-bg-glow { position: absolute; width: 450px; height: 450px; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(80px); }
.core-bg-glow--left { top: 5%; left: -8%; background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 70%); }
.core-bg-glow--right { bottom: 5%; right: -8%; background: radial-gradient(circle, rgba(234,88,12,0.04) 0%, transparent 70%); }

.core-title-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 35%, #0a0a12 100%); pointer-events: none; z-index: 0; }

.core-stage { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

/* Micro label */
.core-micro { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.core-title-section.core-active .core-micro { opacity: 1; transform: translateY(0); }
.core-micro-line { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,229,255,0.35)); }
.core-micro-line:last-child { background: linear-gradient(90deg, rgba(0,229,255,0.35), transparent); }
.core-micro-text { display: inline-flex; align-items: center; gap: 6px; font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(0,229,255,0.55); white-space: nowrap; }
.core-micro-text svg { color: rgba(0,229,255,0.45); flex-shrink: 0; }

/* Headline */
.core-headline-wrap { position: relative; overflow: hidden; padding: 8px 0 14px; margin-bottom: 28px; }

.core-headline { font-family: 'Orbitron', sans-serif; font-size: clamp(2.4rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: 0.06em; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }

.core-word { display: block; position: relative; 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); }
.core-word--1, .core-word--3 { color: rgba(232,234,240,0.35); font-size: 0.48em; letter-spacing: 0.4em; font-weight: 600; }

.core-word--2 {
    background: linear-gradient(135deg, #00d4ff 0%, #00e5ff 25%, #00b8d4 50%, #00e5ff 75%, #00d4ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: core-gradientFlow 6s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(0,229,255,0.12));
}

@keyframes core-gradientFlow { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Staggered word reveal */
.core-title-section.core-active .core-word--1 { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.core-title-section.core-active .core-word--2 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.core-title-section.core-active .core-word--3 { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

/* Neon scan sweep */
.core-scan {
    position: absolute; top: 0; left: -25%; width: 25%; height: 100%; pointer-events: none; z-index: 10; opacity: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.0) 25%, rgba(0,229,255,0.06) 42%, rgba(0,229,255,0.14) 50%, rgba(0,229,255,0.06) 58%, rgba(0,229,255,0.0) 75%, transparent 100%);
}

.core-title-section.core-active .core-scan { animation: core-scanSweep 4.5s cubic-bezier(0.25,0.46,0.45,0.94) 0.8s infinite; }

@keyframes core-scanSweep { 0% { left: -30%; opacity: 0; } 5% { opacity: 1; } 80% { opacity: 1; } 100% { left: 120%; opacity: 0; } }

/* Subtitle */
.core-subtitle { font-size: 1.05rem; line-height: 1.7; color: #6b7280; max-width: 560px; margin-bottom: 28px; opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s; }
.core-title-section.core-active .core-subtitle { opacity: 1; transform: translateY(0); }

/* Version badge */
.core-version { display: inline-flex; align-items: center; gap: 8px; font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,234,240,0.22); padding: 6px 16px; border: 1px solid rgba(0,229,255,0.08); border-radius: 100px; background: rgba(0,229,255,0.02); opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease 0.85s, transform 0.6s ease 0.85s; }
.core-title-section.core-active .core-version { opacity: 1; transform: translateY(0); }

.core-version-dot { width: 5px; height: 5px; background: #00e5ff; border-radius: 50%; animation: core-dotBlink 2.5s ease-in-out infinite; }
@keyframes core-dotBlink { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,229,255,0.4); } 50% { opacity: 0.4; box-shadow: 0 0 0 6px rgba(0,229,255,0); } }

/* Responsive */
@media (max-width: 768px) { .core-title-section { padding: 75px 20px 70px; } .core-micro { margin-bottom: 28px; } .core-micro-line { width: 24px; } .core-subtitle { font-size: 0.95rem; } }
@media (max-width: 480px) { .core-title-section { padding: 55px 16px 50px; } .core-headline { font-size: clamp(2rem, 9vw, 3.2rem); } .core-word--1, .core-word--3 { font-size: 0.45em; letter-spacing: 0.25em; } .core-micro-text { font-size: 0.58rem; letter-spacing: 0.18em; } .core-subtitle { font-size: 0.88rem; } }

/* ============================================
   SCROLL INFO
   ============================================ */

.scroll-info { position: fixed; bottom: 20px; right: 20px; background: rgba(0,0,0,0.8); padding: 15px 25px; border-radius: 10px; border: 1px solid rgba(255,200,100,0.5); font-size: 14px; z-index: 20; opacity: 0; transition: opacity 0.3s ease; }
.scroll-info.visible { opacity: 1; }


/* ============================================
   WAVE DIVIDERS
   ============================================ */

.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; z-index: 15; }
.wave-divider svg { display: block; width: 100%; height: 80px; }
@media (min-width: 768px) { .wave-divider svg { height: 120px; } }
.wave-top { background-color: #000000; }
.wave-top svg path { fill: #0a0a12; }
.wave-bottom { background-color: #0a0a12; }
.wave-bottom svg path { fill: #000000; }


/* ============================================
   ZIGZAG SECTIONS
   ============================================ */

.zigzag-sections { position: relative; z-index: 15; max-width: 100%; margin: 0 auto; padding: 60px 20px 100px; background-color: #0a0a12; }
.zigzag-sections::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(234,88,12,0.015) 80px, rgba(234,88,12,0.015) 82px), radial-gradient(ellipse 80% 50% at 20% 30%, rgba(234,88,12,0.04) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 70%, rgba(0,255,100,0.03) 0%, transparent 70%); pointer-events: none; z-index: 0; }

.zigzag-row { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 3rem; margin-bottom: 120px; padding: 0 20px; max-width: 1400px; margin-left: auto; margin-right: auto; }
.zigzag-row:last-child { margin-bottom: 0; }
@media (min-width: 768px) { .zigzag-row { flex-direction: row; gap: 6rem; } .zigzag-row--reverse { flex-direction: row-reverse; } }

.zigzag-media { flex: 1.2; display: flex; justify-content: center; align-items: center; min-width: 0; }
.zigzag-text { flex: 1; min-width: 0; }
.zigzag-text h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; background: linear-gradient(to right, #f97316, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.zigzag-text p { color: #c4c4c4; font-size: 1.05rem; line-height: 1.8; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .zigzag-text h2 { font-size: 2.5rem; } .zigzag-text p { font-size: 1.2rem; } }
@media (max-width: 480px) { .zigzag-text h2 { font-size: 1.5rem; } .zigzag-text p { font-size: 1rem; } }


/* ============================================
   DEVICE FRAMES (AGGIORNATI - PIÙ GROSSI)
   ============================================ */

.device-pc { width: 100%; max-width: 680px; background: #1a1a1a; border-radius: 14px; padding: 14px 14px 0 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 40px rgba(234,88,12,0.1); border: 1px solid rgba(255,255,255,0.1); }
.device-pc .device-screen { border-radius: 8px; overflow: hidden; aspect-ratio: 16/10; background: #000; }
.device-pc .device-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.device-pc::after { content: ''; display: block; height: 32px; background: linear-gradient(to bottom, #1a1a1a, #111); border-radius: 0 0 14px 14px; margin-top: 10px; }
.device-pc::before { content: ''; display: block; width: 8px; height: 8px; background: #333; border-radius: 50%; margin: 0 auto 10px; box-shadow: 0 0 5px rgba(0,255,100,0.4); }

.device-phone { width: 340px; max-width: 100%; background: #1a1a1a; border-radius: 40px; padding: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 45px rgba(234,88,12,0.12); border: 1px solid rgba(255,255,255,0.1); position: relative; transition: transform 0.3s ease; }
.device-phone .device-screen { border-radius: 26px; overflow: hidden; aspect-ratio: 9/19.5; background: #000; }
.device-phone .device-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.device-phone::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 110px; height: 28px; background: #1a1a1a; border-radius: 0 0 18px 18px; z-index: 5; }
.device-phone::after { content: ''; display: block; width: 130px; height: 5px; background: #444; border-radius: 5px; margin: 12px auto 0; }

@media (max-width: 768px) { .device-phone { width: 280px; } .device-pc { max-width: 500px; } }
@media (max-width: 480px) { .device-phone { width: 240px; } .device-pc { max-width: 320px; } }


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal-left { opacity: 0; transform: translateX(-80px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-row .reveal-right { transition-delay: 0.15s; }
.zigzag-row--reverse .reveal-left { transition-delay: 0.15s; }


/* ============================================
   APPS CAROUSEL
   ============================================ */

.apps-section { position: relative; background-color: #000; padding: 100px 20px 120px; text-align: center; overflow: hidden; }
.apps-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.75rem; background: linear-gradient(to right, #f97316, #dc2626, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.apps-subtitle { color: #9ca3af; font-size: 1.1rem; margin-bottom: 60px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
@media (min-width: 1024px) { .apps-title { font-size: 3rem; } }
@media (max-width: 480px) { .apps-title { font-size: 1.6rem; } .apps-subtitle { font-size: 0.95rem; margin-bottom: 40px; } .apps-section { padding: 70px 15px 80px; } }

.carousel-container { position: relative; width: 100%; max-width: 600px; height: 320px; margin: 0 auto; perspective: 900px; }
@media (min-width: 768px) { .carousel-container { height: 380px; max-width: 700px; } }
.carousel-track { position: relative; width: 100%; height: 100%; }

.carousel-card { position: absolute; top: 50%; left: 50%; transform-origin: center center; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.card-inner { width: 140px; height: 140px; border-radius: 28px; overflow: hidden; background: #111; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.06); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.card-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-label { display: block; margin-top: 14px; font-size: 0.95rem; font-weight: 600; color: #888; letter-spacing: 0.03em; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); text-align: center; white-space: nowrap; }
@media (min-width: 768px) { .card-inner { width: 170px; height: 170px; border-radius: 32px; } .card-label { font-size: 1.05rem; margin-top: 18px; } }

.carousel-card[data-position="center"] { transform: translate(-50%, -50%) scale(1) translateZ(0); z-index: 10; filter: brightness(1); }
.carousel-card[data-position="center"] .card-inner { width: 180px; height: 180px; border-radius: 36px; box-shadow: 0 20px 60px rgba(234,88,12,0.2), 0 0 40px rgba(234,88,12,0.08), 0 10px 30px rgba(0,0,0,0.6); border-color: rgba(234,88,12,0.3); }
.carousel-card[data-position="center"] .card-label { color: #f97316; font-size: 1.1rem; }
@media (min-width: 768px) { .carousel-card[data-position="center"] .card-inner { width: 220px; height: 220px; border-radius: 40px; } .carousel-card[data-position="center"] .card-label { font-size: 1.2rem; margin-top: 22px; } }

.carousel-card[data-position="left"] { transform: translate(calc(-50% - 140px), calc(-50% + 10px)) scale(0.75) translateZ(-80px); z-index: 5; filter: brightness(0.5); }
.carousel-card[data-position="left"] .card-label { opacity: 0.5; font-size: 0.85rem; }
@media (min-width: 768px) { .carousel-card[data-position="left"] { transform: translate(calc(-50% - 190px), calc(-50% + 12px)) scale(0.75) translateZ(-80px); } }

.carousel-card[data-position="right"] { transform: translate(calc(-50% + 140px), calc(-50% + 10px)) scale(0.75) translateZ(-80px); z-index: 5; filter: brightness(0.5); }
.carousel-card[data-position="right"] .card-label { opacity: 0.5; font-size: 0.85rem; }
@media (min-width: 768px) { .carousel-card[data-position="right"] { transform: translate(calc(-50% + 190px), calc(-50% + 12px)) scale(0.75) translateZ(-80px); } }

.carousel-container::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 280px; height: 280px; background: radial-gradient(circle, rgba(234,88,12,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
@media (min-width: 768px) { .carousel-container::after { width: 350px; height: 350px; } }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    position: relative;
    background: #030308;
    overflow: hidden;
    z-index: 15;
}

/* Background effects */
.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0,212,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(0,212,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.012) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 60%);
}

/* Top accent line */
.footer-accent-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2) 20%, rgba(234,88,12,0.15) 50%, rgba(0,212,255,0.2) 80%, transparent);
}

/* ---- MAIN GRID ---- */

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 50px;
}

@media (min-width: 640px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 32px;
    }
}

@media (min-width: 960px) {
    .footer-main {
        grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
        gap: 24px 40px;
        padding: 70px 40px 60px;
    }
}

/* ---- BRAND COLUMN ---- */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e8eaf0;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.65;
    color: #5a5e6b;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,212,255,0.35);
    padding: 5px 12px;
    border: 1px solid rgba(0,212,255,0.06);
    border-radius: 6px;
    background: rgba(0,212,255,0.015);
    width: fit-content;
}

.footer-badge svg {
    color: rgba(0,212,255,0.3);
    flex-shrink: 0;
}

/* ---- COLUMN TITLES ---- */

.footer-col-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232,234,240,0.5);
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ---- LINKS ---- */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.85rem;
    color: #5a5e6b;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: rgba(0,212,255,0.4);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #b8ecff;
    padding-left: 4px;
}

.footer-link:hover::before {
    width: 100%;
}

/* ---- CONTACT ITEMS ---- */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.03);
    background: rgba(255,255,255,0.015);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

a.footer-contact-item:hover {
    border-color: rgba(0,212,255,0.15);
    background: rgba(0,212,255,0.03);
    transform: translateX(3px);
}

.footer-contact-item--hours {
    cursor: default;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0,212,255,0.05);
    border: 1px solid rgba(0,212,255,0.08);
    color: rgba(0,212,255,0.5);
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact-label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0,212,255,0.4);
    margin-bottom: 2px;
}

.footer-contact-value {
    display: block;
    font-size: 0.82rem;
    color: #9ca3af;
}

/* ---- CTA BUTTON ---- */

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(234,88,12,0.8) 0%, rgba(220,38,38,0.7) 100%);
    border: 1px solid rgba(234,88,12,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(234,88,12,0.15);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234,88,12,0.25);
}

.footer-cta svg {
    transition: transform 0.3s ease;
}

.footer-cta:hover svg {
    transform: translateX(3px);
}

/* ---- BOTTOM BAR ---- */

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (min-width: 640px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 40px;
    }
}

.footer-copyright {
    font-size: 0.72rem;
    color: #3a3e4a;
    letter-spacing: 0.03em;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-link {
    font-size: 0.72rem;
    color: #3a3e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: rgba(0,212,255,0.5);
}

.footer-legal-sep {
    color: #2a2e36;
    font-size: 0.72rem;
}

/* ---- REVEAL ANIMATION ---- */

.ft-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.ft-reveal.ft-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 480px) {
    .footer-main {
        padding: 45px 16px 40px;
        gap: 32px;
    }
    .footer-tagline {
        font-size: 0.82rem;
    }
    .footer-col-title {
        font-size: 0.65rem;
    }
    .footer-contact-item {
        padding: 8px 12px;
    }
    .footer-cta {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
}


.infinito{
font-size: 40px;
}


/* ============================================
   UNLIMITED POSSIBILITIES SECTION — v3
   ============================================ */

.unlim-section {
    position: relative;
    z-index: 15;
    padding: 80px 24px 100px;
    background: #060610;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Match xtra-section bg ---- */
.unlim-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(0deg, transparent 49.5%, rgba(234,88,12,0.025) 49.5%, rgba(234,88,12,0.025) 50.5%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(234,88,12,0.025) 49.5%, rgba(234,88,12,0.025) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 15%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 50%, black 15%, transparent 70%);
}

.unlim-bg-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Central glow ---- */
.unlim-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.unlim-glow--center {
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234,88,12,0.06) 0%, rgba(234,88,12,0.02) 35%, transparent 65%);
    animation: unlim-orbPulse 6s ease-in-out infinite;
}

@keyframes unlim-orbPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.45; transform: translate(-50%, -50%) scale(1.1); }
}

/* ---- Neon border lines (orange) ---- */
.unlim-hline {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 1;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(234,88,12,0.1) 30%,
        rgba(234,88,12,0.25) 50%,
        rgba(234,88,12,0.1) 70%,
        transparent 95%
    );
}
.unlim-hline--top { top: 0; }
.unlim-hline--bottom { bottom: 0; }
.unlim-hline::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 11px;
    background: linear-gradient(90deg, transparent 20%, rgba(234,88,12,0.04) 50%, transparent 80%);
    filter: blur(4px);
}

/* ---- Particles (orange) ---- */
.unlim-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.unlim-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(234,88,12,0.5);
    box-shadow: 0 0 6px rgba(234,88,12,0.3);
    animation: unlim-float 9s ease-in-out infinite;
}
.unlim-dot--1 { top: 20%; left: 15%; animation-delay: 0s; }
.unlim-dot--2 { top: 70%; left: 10%; animation-delay: 1.5s; }
.unlim-dot--3 { top: 22%; right: 18%; animation-delay: 3s; }
.unlim-dot--4 { top: 75%; right: 12%; animation-delay: 0.7s; }
.unlim-dot--5 { top: 50%; left: 6%; animation-delay: 4s; width: 3px; height: 3px; }
.unlim-dot--6 { top: 40%; right: 8%; animation-delay: 2s; width: 3px; height: 3px; }
.unlim-dot--7 { top: 85%; left: 35%; animation-delay: 3.5s; }
.unlim-dot--8 { top: 12%; right: 35%; animation-delay: 1s; }

@keyframes unlim-float {
    0%, 100% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(-14px); }
}

/* ---- Vignette ---- */
.unlim-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 25%, #060610 100%);
    pointer-events: none;
    z-index: 1;
}

/* ============ UPWARD ARROWS ============ */

.unlim-arrows {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.unlim-section.unlim-active .unlim-arrows {
    opacity: 1;
    transform: translateY(0);
}

.unlim-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.unlim-arrow-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, rgba(234,88,12,0.35), rgba(234,88,12,0.0));
    animation: unlim-lineUp 2.5s ease-in-out infinite;
}
.unlim-arrow:nth-child(2) .unlim-arrow-line { height: 44px; animation-delay: 0.3s; }
.unlim-arrow:nth-child(3) .unlim-arrow-line { height: 32px; animation-delay: 0.6s; }

@keyframes unlim-lineUp {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.unlim-arrow-chevron {
    width: 18px;
    height: 18px;
    color: rgba(234,88,12,0.45);
    animation: unlim-chevBounce 2.5s ease-in-out infinite;
}
.unlim-arrow:nth-child(1) .unlim-arrow-chevron { animation-delay: 0s; }
.unlim-arrow:nth-child(2) .unlim-arrow-chevron { animation-delay: 0.3s; color: rgba(234,88,12,0.6); }
.unlim-arrow:nth-child(3) .unlim-arrow-chevron { animation-delay: 0.6s; }

@keyframes unlim-chevBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-6px); opacity: 1; }
}

/* ============ CONTENT ============ */

.unlim-stage {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -- Micro label (hidden - not needed) -- */
.unlim-micro { display: none; }

/* -- Headline -- */
.unlim-headline-wrap {
    position: relative;
    overflow: hidden;
    padding: 6px 0 12px;
    margin-bottom: 0;
}

.unlim-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.unlim-word {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.unlim-word--sub {
    color: rgba(232,234,240,0.22);
    font-size: 0.3em;
    letter-spacing: 0.45em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.unlim-word--3 {
    margin-top: 8px;
    margin-bottom: 0;
}

.unlim-word--main {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 30%, #dc2626 55%, #ea580c 80%, #f97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: unlim-gradient 5s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(234,88,12,0.12));
}

@keyframes unlim-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Staggered reveal */
.unlim-section.unlim-active .unlim-word--1 { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.unlim-section.unlim-active .unlim-word--2 { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.unlim-section.unlim-active .unlim-word--3 { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

/* -- Scan sweep (orange) -- */
.unlim-scan {
    position: absolute;
    top: 0;
    left: -30%;
    width: 25%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(234,88,12,0.0) 25%,
        rgba(234,88,12,0.06) 42%,
        rgba(234,88,12,0.14) 50%,
        rgba(234,88,12,0.06) 58%,
        rgba(234,88,12,0.0) 75%,
        transparent 100%
    );
}
.unlim-section.unlim-active .unlim-scan {
    animation: unlim-sweep 5s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s infinite;
}
@keyframes unlim-sweep {
    0% { left: -35%; opacity: 0; }
    5% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* -- Neon underline (orange) -- */
.unlim-neon-line {
    position: relative;
    width: 160px;
    height: 2px;
    margin: 30px auto 32px;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.5s ease 0.65s, transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.65s;
}
.unlim-section.unlim-active .unlim-neon-line {
    opacity: 1;
    transform: scaleX(1);
}
.unlim-neon-line-inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #ea580c, transparent);
    border-radius: 2px;
}
.unlim-neon-line-glow {
    position: absolute;
    top: -5px;
    left: 8%;
    right: 8%;
    height: 12px;
    background: linear-gradient(90deg, transparent, rgba(234,88,12,0.4), transparent);
    filter: blur(8px);
    border-radius: 50%;
    animation: unlim-lineGlow 3s ease-in-out infinite;
}
@keyframes unlim-lineGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* -- Subtitle -- */
.unlim-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(160,170,185,0.5);
    max-width: 460px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
}
.unlim-section.unlim-active .unlim-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* -- Tags (hidden) -- */
.unlim-tags { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .unlim-section { padding: 65px 20px 80px; }
    .unlim-arrows { gap: 22px; margin-bottom: 36px; }
    .unlim-arrow-line { height: 24px !important; }
    .unlim-arrow:nth-child(2) .unlim-arrow-line { height: 32px !important; }
    .unlim-word--sub { font-size: 0.28em; letter-spacing: 0.2em; }
    .unlim-neon-line { width: 120px; }
    .unlim-subtitle { font-size: 0.92rem; }
}

@media (max-width: 480px) {
    .unlim-section { padding: 55px 16px 70px; }
    .unlim-headline { font-size: clamp(2rem, 10vw, 3rem); }
    .unlim-word--sub { font-size: 0.34em; letter-spacing: 0.14em; }
    .unlim-arrows { gap: 18px; margin-bottom: 30px; }
    .unlim-arrow-chevron { width: 14px; height: 14px; }
    .unlim-subtitle { font-size: 0.85rem; max-width: 300px; }
    .unlim-neon-line { width: 90px; }
}