:root{
  --bg:#07070a;
  --bg2:#0b0b12;
  --card:#0e0e18;
  --line:rgba(255,255,255,.08);
  --txt:rgba(255,255,255,.92);
  --mut:rgba(255,255,255,.62);

  /* BRAND */
  --acc:#d6b15a;      /* oro */
  --acc2:#6bd6ff;     /* azzurro */

  /* PERFORMANCE */
  --neo:#32ff6a;
  --neo-soft:rgba(50,255,106,.18);

  --pos:var(--neo);
  --neg:#FF5B6B;

  --shadow: 0 20px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(214,177,90,.12), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(107,214,255,.10), transparent 55%),
    var(--bg);
  color:var(--txt);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{color:inherit;text-decoration:none}
.container{width:min(1180px, calc(100% - 40px)); margin:0 auto;}
.muted{color:var(--mut)}
.pos{color:var(--neo)}
.neg{color:var(--neg)}

/* HEADER */
.top{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(7,7,10,.55);
  border-bottom:1px solid var(--line);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
  flex-wrap:nowrap; /* 🔒 niente accatastamenti */
}

.brand{display:flex; align-items:center; gap:12px; min-width:260px;}
.brand__logo{
  width:38px;height:38px;border-radius:12px;
  background: linear-gradient(135deg, var(--acc), var(--neo));
  display:grid; place-items:center;
  font-weight:900; color:#07140a;
}
.brand__name{font-weight:900; letter-spacing:.6px}
.brand__sub{font-size:12px;color:var(--mut)}

/* MENU: sempre 1 riga su desktop */
.menu{
  display:flex;
  gap:22px;
  flex-wrap:nowrap;
  white-space:nowrap;
  align-items:center;
}
.menu a{
  font-size:13px;
  font-weight:700;
  color:var(--mut);
}
.menu a:hover{color:var(--neo)}

.top__cta{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  white-space:nowrap;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--line);
  font-weight:800; font-size:13px;
}
.btn--primary{
  background: linear-gradient(135deg, var(--neo), #9bffb9);
  color:#04140a;
  border:none;
}
.btn--ghost{background: rgba(255,255,255,.03);}
.btn--ghost:hover{border-color:var(--neo);}
.btn--full{width:100%}

/* HERO */
.hero{position:relative; padding:54px 0 20px;}
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
}
.kicker{
  font-size:12px;
  color:var(--neo);
  letter-spacing:1.6px;
  font-weight:900;
}
.hero__title{
  margin:10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.5px;
}
.hero__text{
  color:var(--mut);
  font-size:15px;
  line-height:1.5;
  max-width:52ch;
}
.hero__badges{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.badge{
  padding:8px 12px;
  border-radius:999px;
  background:var(--neo-soft);
  border:1px solid rgba(50,255,106,.35);
  font-size:12px;
  color:var(--neo);
  font-weight:800;
}

/* SECTION */
.section{padding:46px 0;}
.section__head{margin-bottom:18px}
.section__title{margin:0 0 6px; font-size:26px; letter-spacing:.3px}
.section__sub{margin:0; color:var(--mut); font-size:14px; line-height:1.45}

/* CARDS */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:16px;
}
.card--soft{box-shadow:none; background: rgba(255,255,255,.02)}
.card--glow{
  border-color: rgba(50,255,106,.35);
  box-shadow: 0 22px 70px rgba(50,255,106,.15), var(--shadow);
}
.card__head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px}
.card__title{font-weight:900}
.card__meta{font-size:12px; color:var(--mut)}

/* STATS */
.stats{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.stat{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.stat__label{color:var(--mut); font-size:12px}
.stat__value{
  font-size:22px;
  font-weight:900;
  margin-top:6px;
}

/* IG */
.ig-grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:10px}
.ig-tile{
  aspect-ratio: 1 / 1;
  border-radius:14px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(50,255,106,.10), rgba(107,214,255,.08)),
    rgba(255,255,255,.02);
}
.link{display:inline-block; margin-top:10px; color:var(--neo); font-weight:900}

/* SERVICES */
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.service{
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding:18px;
  transition:.25s ease;
}
.service:hover{
  border-color:var(--neo);
  transform: translateY(-2px);
}
.service__tag{
  font-size:12px;
  color:var(--neo);
  font-weight:900;
  letter-spacing:1.2px;
}
.service__title{margin:10px 0 8px; font-size:18px}
.service__text{color:var(--mut); line-height:1.45}
.service__list{padding-left:16px; color:var(--mut)}
.service__list li{margin:6px 0}

/* =======================
   BOT – PREMIUM DECK
   ======================= */

.bots-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr); /* 🎯 premium: grandi, leggibili */
  gap:18px;
  align-items:stretch;
}

.bot{
  display:flex;
  flex-direction:column;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  transition: .22s ease;
}
.bot:hover{
  border-color: rgba(50,255,106,.55);
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}

.bot__media{
  position:relative;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(600px 320px at 40% 20%, rgba(50,255,106,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.55));
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.bot__media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  padding:14px; /* leggermente meno “vuoto” */
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.75));
}

.pill{
  position:absolute;
  top:12px; left:12px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--neo-soft);
  border:1px solid var(--neo);
  color:var(--neo);
  font-size:12px;
  font-weight:900;
  z-index:2;
}

.bot-info{
  position:absolute;
  top:12px;
  right:12px;
  width:28px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
  background: rgba(0,0,0,.60);
  border:1px solid var(--line);
  color: var(--neo);
  cursor:help;
  z-index:2;
}
.bot-info:hover{
  background: rgba(50,255,106,.14);
  border-color: rgba(50,255,106,.55);
}

.bot__body{padding:12px 12px 14px}
.bot__name{
  font-weight:900;
  text-align:center;
  letter-spacing:.3px;
  font-size:14px;
}
.bot__daily{
  margin-top:8px;
  font-weight:900;
  text-align:center;
  font-size:13px;
}

/* EMPTY */
.empty{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background: rgba(255,255,255,.02);
}
.empty__title{font-weight:900}
.empty__text{color:var(--mut); margin-top:6px}

/* PROOF */
.proof{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.proof__item{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18)
}
.proof__label{color:var(--mut); font-size:12px}
.proof__value{font-weight:900; margin-top:6px}

/* CONTACT */
.contact{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.contact__title{margin:0 0 8px; font-size:18px}
.contact__text{margin:0 0 12px; color:var(--mut); line-height:1.45}
.contact__row{margin:8px 0}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  margin-top:20px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  color:var(--mut);
  font-size:13px;
  flex-wrap:wrap;
  gap:10px;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .bots-grid{grid-template-columns: repeat(4, 1fr);}
}
@media (max-width:900px){
  .hero__inner{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .proof{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .bots-grid{grid-template-columns: repeat(3, 1fr);}
}
@media (max-width:620px){
  .menu{display:none}
  .bots-grid{grid-template-columns: repeat(2, 1fr);}
  .hero__title{font-size:34px}
}
@media (max-width:420px){
  .bots-grid{grid-template-columns: 1fr;}
}

/* =========================
   LAYOUT BASE FIX
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* =========================
   HERO
========================= */

.hero {
  background: radial-gradient(circle at right, #0f1b18, #0a0a0a 60%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
}

.hero__text {
  font-size: 16px;
  max-width: 520px;
  opacity: .85;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* =========================
   HERO RIGHT / CARD
========================= */

.hero__right {
  display: flex;
  flex-direction: column;
}

/* =========================
   BADGE
========================= */

.badge {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(0,255,156,.08);
  border: 1px solid rgba(0,255,156,.35);
  color: #00ff9c;
}

/* =========================
   BOT GRID
========================= */

.bots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bot {
  background: #121212;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  overflow: hidden;
  transition: transform .25s ease;
}

.bot:hover {
  transform: translateY(-4px);
}

.bot__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bot__body {
  padding: 14px;
}

.bot__name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.bot__daily {
  font-size: 14px;
  font-weight: 700;
}

.bot__daily.pos { color: #00ff9c; }
.bot__daily.neg { color: #ff4d4d; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .bots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   SERVIZI – GRID UNIFICATA
========================= */

.bots-top,
.grid3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* stessa dimensione per TUTTE le card */
.service {
  background: linear-gradient(180deg, #141414, #0f0f0f);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #1f1f1f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

/* tag sopra */
.service__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #00ff9c;
  opacity: .8;
  margin-bottom: 8px;
}

/* titolo */
.service__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* testo */
.service__text {
  font-size: 13px;
  opacity: .75;
  line-height: 1.5;
}

/* bottone sempre allineato sotto */
.service .btn {
  margin-top: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .bots-top,
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bots-top,
  .grid3 {
    grid-template-columns: 1fr;
  }
}

