    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;    
}
.wrap-flex {display:flex;}
.wrap {flex-wrap:wrap;}
.align-center {align-items:center;}
.align-s {align-items: flex-start;}
.justify-c {justify-content: center;}
.width100 {width:100%;}
.column {flex-direction:column;}
.gap10 {gap:10px;}
.gap50 {gap:50px;}
.spc-btw {justify-content: space-between;}
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #072a42 0%, #0a4a7f 30%, #1269b3 65%, #1a87e1 100%);   
}

/* Grid */
.grid-bg {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.orb--1 {
    top: -15%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.04), transparent 60%);
    animation: float 8s ease-in-out infinite;
}
.orb--2 {
    bottom: -10%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,135,225,.15), transparent 65%);
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ═══ MAIN ═══ */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 80px 50px 24px;
    text-align: center;
}

/* Logo */
.logo {
    width:400px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
    margin-bottom: 30px;
}

/* Coming soon label */
.coming {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.coming-dots {
    display: inline-block;
    width: 24px;
    text-align: left;
    color: #4db8ff;
}

/* Headline */
.headline {
    font-size: clamp(14px, 2.2vw, 22px);
    font-weight: 300;
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;    
    margin-bottom: 12px;
}

/* Title */
.title {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    margin-block: 40px;
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contacts row */
.contacts {
    display: flex;
    flex-direction:column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;   
}
.chip-loc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;    
    text-decoration: none;
    transition: all .3s ease;
    text-align:center;    
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 100px;
    text-decoration: none;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.chip:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-2px);
}
.chip i, .chip-loc i { flex-shrink: 0; color:rgba(255,255,255,.35); }
.chip-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    white-space: nowrap;
    letter-spacing: 1px;
}
/* Hours bar */
.hours {    
    padding: 16px 32px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    display: inline-flex;
    align-items: center;
    align-self: stretch
}
.hours-icon { color: rgba(255,255,255,.35); flex-shrink: 0; display: flex; }
.hours-text {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    text-align: left;
    letter-spacing:1px;
}
.hours-text strong {
    font-weight: 600;
    color: rgba(255,255,255,.65);
}

/* ═══ FOOTER ═══ */
.footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 24px;
}
.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,.18);
    letter-spacing: .06em;
}
.footer-text a {
    color: rgba(255,255,255,.28);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.footer-text a:hover { color: rgba(255,255,255,.5); }

/* ═══ FADE-IN ANIMATION ═══ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:880px) {.wrap-contatti {justify-content: center; gap:20px;}}
@media (max-width: 640px) {
    .logo {width:250px;}
    .main { padding: 60px 50px 20px; }        
    .contacts { flex-direction: column; align-items: center; }
    .chip { width: 100%; justify-content: center; }
    .hours {text-align: center; padding: 16px 20px; flex-direction:column; }
    .hours-text { text-align: center; font-size:14px;}
    .chip-text {font-size:14px;}   
}