:root{
  --bg:#0b1220;
  --bg2:#0f1b33;
  --card:#0f1a30;
  --text:#e9eefc;
  --muted:#b7c2e1;
  --line:rgba(233,238,252,.12);
  --accent:#023434; /* tuo colore */
  --accent2:#7E8C91; /* Arctis 45 */
  --white:#ffffff;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(2,52,52,.45), transparent 60%),
              radial-gradient(900px 700px at 80% 10%, rgba(126,140,145,.35), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:var(--text);text-decoration:none}
a:hover{opacity:.9}

.container{width:min(1120px, 92%); margin:0 auto;}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px;}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand-mark{
  width:32px;
  height:32px;
  display:block;
  border-radius:10px;
}
.brand-name{letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:16px; flex-wrap:wrap}
.nav a{color:var(--muted); font-weight:500; font-size:14px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  background: var(--accent);
  color:var(--white);
  font-weight:700;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(2,52,52,.25);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-small{padding:10px 14px; border-radius:12px}
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(233,238,252,.22);
  color: var(--text);
  box-shadow:none;
}

.hero{padding:70px 0 30px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:stretch}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.12em; font-size:12px; margin:0 0 10px}
.hero-copy h1{font-size:44px; line-height:1.05; margin:0 0 14px}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin: 0 0 10px}
.micro{color:rgba(233,238,252,.72); font-size:12px; margin:0}

.hero-card .card{
  height:100%;
  background: linear-gradient(180deg, rgba(15,26,48,.85), rgba(15,26,48,.55));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 12px; font-size:16px}
.checks{margin:0; padding:0; list-style:none; display:grid; gap:10px; color:var(--muted)}
.checks li{position:relative; padding-left:22px}
.checks li::before{content:"✓"; position:absolute; left:0; color: var(--accent2); font-weight:800}
.card-note{margin-top:14px; display:flex; gap:10px; align-items:flex-start; color:rgba(233,238,252,.75); font-size:12px}
.dot{width:9px; height:9px; border-radius:999px; background: var(--accent2); margin-top:4px}

.section{padding:54px 0; border-top:1px solid var(--line)}
.section.alt{background: rgba(255,255,255,.02)}
.section h2{margin:0 0 10px; font-size:28px}
.section-lead{margin:0 0 22px; color:var(--muted); line-height:1.6}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}

.feature, .project{
  background: rgba(15,26,48,.55);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.feature h3, .project h3{margin:0 0 8px; font-size:16px}
.feature p, .project p{margin:0; color:var(--muted); line-height:1.6}
.tag{
  display:inline-flex;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  color: var(--white);
  background: rgba(2,52,52,.75);
  border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

.timeline{display:grid; gap:12px}
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:flex-start;
  background: rgba(15,26,48,.55);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}
.step-n{
  width:44px; height:44px; border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(126,140,145,.20);
  border:1px solid rgba(233,238,252,.14);
  font-weight:900;
}
.step h3{margin:0 0 4px; font-size:16px}
.step p{margin:0; color:var(--muted); line-height:1.6}

.section.cta{padding:64px 0}
.cta-box{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  background: linear-gradient(135deg, rgba(2,52,52,.35), rgba(15,26,48,.65));
  border:1px solid rgba(233,238,252,.14);
  border-radius:18px;
  padding:18px;
}
.contact-cards{display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 6px}
.contact{
  background: rgba(15,26,48,.6);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  min-width: 240px;
}
.contact .label{display:block; color:rgba(233,238,252,.65); font-size:12px}
.contact .value{display:block; font-weight:800; margin-top:2px}
.mini{
  background: rgba(15,26,48,.55);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.mini h3{margin:0 0 8px; font-size:16px}
.mini p{margin:0; color:var(--muted); line-height:1.6}

.site-footer{padding:22px 0; border-top:1px solid var(--line)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; color:rgba(233,238,252,.75); font-size:12px}
.footer-links{display:flex; gap:14px; align-items:center}
.footer-links a{color:rgba(233,238,252,.75)}
.linklike{background:none; border:none; color:rgba(233,238,252,.75); cursor:pointer; padding:0; font:inherit}
.linklike:hover{opacity:.9}

/* Cookie banner */
.cookie-banner{
  position:fixed;
  left:14px; right:14px; bottom:14px;
  z-index:9999;
  background: rgba(11,18,32,.92);
  border: 1px solid rgba(233,238,252,.16);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.cookie-inner{display:flex; gap:14px; align-items:flex-start; justify-content:space-between; padding:14px}
.cookie-inner p{margin:0; color:rgba(233,238,252,.82); font-size:13px; line-height:1.45}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.cookie-actions button{
  border-radius: 12px;
  padding:10px 12px;
  font-weight:800;
  border:1px solid rgba(233,238,252,.20);
  cursor:pointer;
}
.cookie-actions .accept{background: var(--accent); color:var(--white); border-color: rgba(255,255,255,.10)}
.cookie-actions .reject{background: transparent; color: var(--text)}
.cookie-actions .prefs{background: rgba(126,140,145,.18); color: var(--text)}

.cookie-modal{position:fixed; inset:0; background: rgba(0,0,0,.55); z-index:10000; display:none; align-items:center; justify-content:center; padding:16px}
.cookie-modal[aria-hidden="false"]{display:flex}
.cookie-panel{
  width:min(680px, 96%);
  background: rgba(11,18,32,.96);
  border:1px solid rgba(233,238,252,.16);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding:16px;
}
.cookie-panel h3{margin:0 0 8px}
.cookie-panel .row{display:flex; justify-content:space-between; gap:12px; align-items:center; padding:12px 0; border-top:1px solid rgba(233,238,252,.10)}
.cookie-panel .row:first-of-type{border-top:none}
.cookie-panel .row p{margin:0; color:rgba(233,238,252,.78); font-size:13px; line-height:1.45}
.switch{display:inline-flex; align-items:center; gap:10px}
.switch input{width:18px; height:18px}
.cookie-panel .panel-actions{display:flex; justify-content:flex-end; gap:10px; margin-top:12px}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .cta-box{grid-template-columns:1fr}
  .nav{display:none}
  .hero-copy h1{font-size:36px}
}
