:root {
  --bg: #020908;
  --bg-soft: #071211;
  --card: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #aab8b4;
  --green: #25f2aa;
  --green-dark: #0aa874;
  --shadow: 0 0 40px rgba(37, 242, 170, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 75% 10%, rgba(37, 242, 170, .18), transparent 32%),
    radial-gradient(circle at 15% 20%, rgba(37, 242, 170, .08), transparent 25%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.noise { position: fixed; inset: 0; pointer-events: none; opacity: .05; background-image: linear-gradient(45deg, #fff 1px, transparent 1px); background-size: 4px 4px; z-index: 0; }
body > * { position: relative; z-index: 1; }

.navbar {
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 9, 8, .75);
}
.navbar nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo { font-weight: 900; font-size: 1.35rem; display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; display: block; }
.footer-logo { height: 52px; }
.logo-mark, h1 span, h2 span, .eyebrow, .stars { color: var(--green); }
.navbar nav { display: flex; gap: 28px; font-size: .88rem; font-weight: 600; color: #dce8e5; }
.navbar nav a:hover { color: var(--green); }
.nav-btn, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green), #7effc8);
  color: #02110d;
  border-radius: 14px;
  padding: 14px 25px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}
.nav-btn:hover, .primary-btn:hover { transform: translateY(-2px); }

.section-padding { padding: 80px 6%; }
.section-padding-small { padding: 45px 6%; }
.hero { min-height: calc(100vh - 76px); display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 900; margin-bottom: 18px; }
.eyebrow span { display: inline-block; width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 20px var(--green); margin-right: 8px; }
h1 { font-size: clamp(4rem, 9vw, 7.5rem); line-height: .86; letter-spacing: -0.07em; margin-bottom: 25px; }
.subtitle { color: #eaf5f2; font-size: 1.35rem; margin-bottom: 32px; }
.hero h2 { font-size: clamp(2.2rem, 4.8vw, 4.5rem); line-height: 1.06; letter-spacing: -0.04em; max-width: 760px; }
.hero-note, .small-note, .review-disclaimer { color: var(--muted); margin: 16px 0 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); margin-bottom: 30px; color: #e8f4f1; font-weight: 700; }

.hero-visual { min-height: 610px; display: grid; place-items: center; position: relative; }
.glow { position: absolute; width: 620px; height: 620px; border: 2px solid rgba(37, 242, 170, .45); border-radius: 50%; filter: blur(1px); box-shadow: inset 0 0 60px rgba(37,242,170,.14), 0 0 70px rgba(37,242,170,.22); }
.phone-card { width: 320px; height: 610px; background: linear-gradient(145deg, #161d1d, #050707); border-radius: 46px; padding: 18px; box-shadow: 0 35px 90px #000, 0 0 80px rgba(37,242,170,.25); transform: rotate(8deg); border: 1px solid rgba(255,255,255,.18); }
.phone-top { width: 95px; height: 19px; background: #050808; border-radius: 0 0 16px 16px; margin: 0 auto 20px; }
.phone-screen { height: calc(100% - 40px); background: #07100f; border-radius: 31px; padding: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.screen-header { display: flex; justify-content: space-between; font-weight: 900; margin-bottom: 38px; }
.phone-screen p { color: #d5e2df; font-size: .9rem; }
.phone-screen h3 { color: var(--green); font-size: 2.35rem; margin: 10px 0 24px; }
.chart-line { height: 190px; background: linear-gradient(30deg, transparent 42%, rgba(37,242,170,.2) 43%, rgba(37,242,170,.25) 55%, transparent 56%), linear-gradient(to top, rgba(37,242,170,.22), transparent); clip-path: polygon(0 78%, 10% 70%, 18% 73%, 28% 58%, 38% 63%, 48% 50%, 58% 54%, 70% 39%, 80% 31%, 100% 5%, 100% 100%, 0 100%); border-bottom: 2px solid var(--green); filter: drop-shadow(0 0 18px var(--green)); }
.risk-box { margin-top: 32px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: flex; gap: 12px; align-items: center; }
.risk-box strong { display: block; color: var(--green); }

/* =============================================
   HOME LANDING
   ============================================= */
.home-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 60px 6%;
  position: relative;
  overflow: hidden;
}
.home-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 140vw;
  background: radial-gradient(circle, rgba(37,242,170,.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.home-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-logo-wrap {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: radial-gradient(circle, rgba(37,242,170,.14), rgba(255,255,255,.03));
  border: 1px solid rgba(37,242,170,.35);
  box-shadow: inset 0 0 40px rgba(37,242,170,.12), 0 0 70px rgba(37,242,170,.22);
}
.home-logo { width: 116px; height: auto; display: block; filter: drop-shadow(0 6px 22px rgba(0,0,0,.5)); }
.home-title { font-size: clamp(3rem, 8vw, 5.2rem); line-height: .9; letter-spacing: -0.06em; margin-bottom: 16px; }
.home-tagline { color: #eaf5f2; font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin-bottom: 26px; }
.home-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}
.home-trust div {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .84rem;
  font-weight: 700;
  color: #e8f4f1;
}

.home-menu { width: 100%; display: grid; gap: 14px; }
.menu-link {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.022));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.menu-link:hover {
  transform: translateY(-3px);
  border-color: rgba(37,242,170,.5);
  box-shadow: 0 22px 60px rgba(0,0,0,.34), 0 0 28px rgba(37,242,170,.16);
}
.menu-emoji {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: rgba(37,242,170,.1);
  border: 1px solid rgba(37,242,170,.28);
}
.menu-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.menu-title { font-weight: 900; font-size: 1.12rem; }
.menu-desc { color: var(--muted); font-size: .88rem; line-height: 1.45; }
.menu-arrow { color: var(--green); font-size: 1.3rem; font-weight: 900; transition: transform .18s ease; }
.menu-link:hover .menu-arrow { transform: translateX(4px); }

.menu-link--cta {
  background: linear-gradient(135deg, var(--green), #7effc8);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.menu-link--cta .menu-title,
.menu-link--cta .menu-arrow { color: #02110d; }
.menu-link--cta .menu-desc { color: #043b2b; }
.menu-link--cta .menu-emoji { background: rgba(2,17,13,.12); border-color: rgba(2,17,13,.18); }

.home-note { color: var(--muted); margin-top: 26px; font-size: .9rem; }

.stats, .features, .review-grid, .motive-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats, .motive-grid { grid-template-columns: repeat(3, 1fr); }
.stat-card, .feature-card, .review-card, .review-action, details {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.stat-card span, .feature-card span, .motive-grid span { font-size: 2rem; display: block; margin-bottom: 12px; }
.stat-card strong { color: var(--green); font-size: 1.55rem; display: block; }
.stat-card p, .feature-card p, .review-card p, details p { color: var(--muted); line-height: 1.7; }

.how { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.section-text h2, .reviews h2, .motivation h2, .faq h2 { font-size: clamp(2rem, 3.3vw, 3.5rem); margin-bottom: 22px; letter-spacing: -.04em; }
.section-text p { color: #dce8e5; line-height: 1.85; font-size: 1.08rem; }
ul { list-style: none; margin-top: 24px; display: grid; gap: 13px; }
li::before { content: '✓'; color: var(--bg); background: var(--green); border-radius: 50%; padding: 1px 5px; margin-right: 10px; font-size: .75rem; font-weight: 900; }

.cta-strip { text-align: center; padding: 35px 6%; }
.primary-btn.big { font-size: 1.25rem; padding: 20px 58px; }
.center { text-align: center; }
.reviews h2, .motivation h2, .faq h2 { text-align: center; }
.review-disclaimer { text-align: center; max-width: 680px; margin: -10px auto 30px; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { min-height: 210px; }
.stars { letter-spacing: 4px; margin-bottom: 18px; }
.review-card strong { display: block; margin-top: 24px; }
.review-action { margin-top: 28px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.telegram-icon { width: 90px; height: 90px; border-radius: 50%; display: grid; place-items: center; color: var(--green); font-size: 2.6rem; background: rgba(37,242,170,.08); border: 1px solid rgba(37,242,170,.5); box-shadow: var(--shadow); }
.outline-btn { background: transparent; border: 1px solid var(--green); color: #fff; border-radius: 12px; padding: 16px 28px; text-transform: uppercase; font-weight: 900; cursor: pointer; }
.outline-btn:hover { background: rgba(37,242,170,.1); }
.motive-grid { text-align: center; margin-top: 35px; }
.motive-grid div { padding: 20px; }
.motive-grid p { color: #e4efec; line-height: 1.5; }
.faq { max-width: 960px; margin: 0 auto; }
details { margin-bottom: 14px; }
summary { cursor: pointer; font-weight: 800; font-size: 1.1rem; }
details p { margin-top: 14px; }
footer { text-align: center; padding: 50px 6%; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); }
footer strong { color: #fff; font-size: 1.4rem; }
footer small { max-width: 850px; display: block; margin: 18px auto 0; line-height: 1.6; }
footer .footer-tagline { color: var(--green); font-weight: 600; margin-top: 6px; font-size: .95rem; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(0,0,0,.78); padding: 20px; }
.modal.active { display: grid; }
.modal-box { width: min(480px, 100%); background: #081412; border: 1px solid rgba(37,242,170,.35); border-radius: 24px; padding: 35px; position: relative; box-shadow: var(--shadow); }
.modal-box h3 { font-size: 1.7rem; margin-bottom: 12px; }
.modal-box p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.close { position: absolute; top: 12px; right: 18px; border: 0; background: transparent; color: #fff; font-size: 2rem; cursor: pointer; }

/* =============================================
   CHI SONO
   ============================================= */
.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: start; }
.about-intro { color: #dce8e5; line-height: 1.85; font-size: 1.05rem; margin-bottom: 16px; }
.about h2 { font-size: clamp(2rem, 3.3vw, 3.2rem); margin-bottom: 22px; letter-spacing: -.04em; }
.about-points { margin-top: 30px; display: grid; gap: 22px; }
.about-point { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.about-point > span {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  background: rgba(37,242,170,.1);
  border: 1px solid rgba(37,242,170,.28);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-point strong { display: block; font-size: 1rem; margin-bottom: 5px; }
.about-point p { color: var(--muted); line-height: 1.65; font-size: .93rem; }

.journey-visual { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.journey-card {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.journey-header { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.journey-icon { font-size: 1.35rem; }
.journey-title { font-weight: 900; font-size: 1rem; color: var(--green); }

.journey-steps { display: grid; gap: 0; }
.journey-step { display: grid; grid-template-columns: 32px 1fr; gap: 14px; }
.step-marker { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(37,242,170,.15);
  border: 2px solid rgba(37,242,170,.45);
  flex-shrink: 0;
}
.step-line { width: 2px; flex: 1; min-height: 18px; background: rgba(37,242,170,.2); margin-top: 4px; }
.journey-step.active .step-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 10px var(--green); }
.step-content { padding-bottom: 18px; }
.step-year { font-size: .78rem; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.step-text { font-size: .94rem; color: #dce8e5; line-height: 1.45; }
.step-text small { font-size: .8rem; color: var(--muted); display: block; margin-top: 2px; }
.journey-step.active .step-year { color: var(--green); }
.journey-step.active .step-text { color: #fff; font-weight: 600; }

.about-quote {
  background: linear-gradient(135deg, rgba(37,242,170,.1), rgba(37,242,170,.03));
  border: 1px solid rgba(37,242,170,.25);
  border-radius: 16px;
  padding: 22px 24px;
}
.about-quote p { color: #c0e8da; font-style: italic; line-height: 1.65; font-size: .95rem; }

/* =============================================
   COS'È IL TRADING
   ============================================= */
.trading-info { }
.ti-header { text-align: center; max-width: 740px; margin: 0 auto 52px; }
.ti-header h2 { font-size: clamp(2rem, 3.3vw, 3.5rem); margin-bottom: 18px; letter-spacing: -.04em; }
.ti-intro { color: #dce8e5; line-height: 1.85; font-size: 1.05rem; }
.ti-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.ti-card {
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ti-card--warning {
  border-color: rgba(248,113,113,.3);
  background: linear-gradient(145deg, rgba(248,113,113,.08), rgba(248,113,113,.02));
}
.ti-card span { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.ti-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.ti-card p { color: var(--muted); line-height: 1.7; font-size: .93rem; }
.ti-disclaimer {
  background: rgba(255,200,0,.07);
  border: 1px solid rgba(255,200,0,.22);
  border-radius: 14px;
  padding: 20px 26px;
  color: #e0cc7a;
  font-size: .93rem;
  line-height: 1.65;
  max-width: 860px;
  margin: 0 auto;
}

/* =============================================
   SALA SEGNALI
   ============================================= */
.signals { }
.signals h2 { font-size: clamp(2rem, 3.3vw, 3.5rem); margin-bottom: 18px; text-align: center; letter-spacing: -.04em; }
.signals-intro { color: #dce8e5; line-height: 1.8; text-align: center; max-width: 720px; margin: 0 auto 42px; font-size: 1.05rem; }

.signal-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.signal-stat {
  background: linear-gradient(145deg, rgba(37,242,170,.1), rgba(37,242,170,.03));
  border: 1px solid rgba(37,242,170,.28);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 0 28px rgba(37,242,170,.07);
}
.signal-stat strong { color: var(--green); font-size: 1.4rem; display: block; margin-bottom: 6px; }
.signal-stat p { color: var(--muted); font-size: .86rem; line-height: 1.4; }

.signal-table-wrapper {
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}
.signal-table-header {
  display: grid;
  grid-template-columns: 60px 100px 115px 105px 115px 100px 1fr;
  padding: 13px 22px;
  gap: 6px;
  align-items: center;
  background: rgba(37,242,170,.1);
  font-weight: 900;
  color: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.signal-row {
  display: grid;
  grid-template-columns: 60px 100px 115px 105px 115px 100px 1fr;
  padding: 13px 22px;
  gap: 6px;
  align-items: center;
  font-size: .89rem;
  color: #dce8e5;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.signal-row:last-child { border-bottom: 0; }
.signal-row:hover { background: rgba(255,255,255,.03); }
.signal-row.loss { background: rgba(248,113,113,.03); }

.pair-badge {
  background: rgba(37,242,170,.12);
  border: 1px solid rgba(37,242,170,.3);
  border-radius: 7px;
  padding: 3px 7px;
  color: var(--green);
  font-weight: 700;
  font-size: .78rem;
  display: inline-block;
  white-space: nowrap;
}
.dir-long { color: #4ade80; font-weight: 700; }
.dir-short { color: #f87171; font-weight: 700; }
.result-win { color: #4ade80; font-weight: 900; }
.result-loss { color: #f87171; font-weight: 900; }

.signal-disclaimer { color: var(--muted); font-size: .84rem; text-align: center; margin-bottom: 42px; }
.signal-cta {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 46px 40px;
  text-align: center;
}
.signal-cta h3 { font-size: 1.65rem; margin-bottom: 12px; letter-spacing: -.03em; }
.signal-cta p { color: var(--muted); line-height: 1.65; max-width: 560px; margin: 0 auto 30px; }

/* =============================================
   REVIEW TAGS
   ============================================= */
.review-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(37,242,170,.1);
  border: 1px solid rgba(37,242,170,.28);
  color: var(--green);
}
.review-tag.sala {
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.32);
  color: #a78bfa;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  .navbar nav { display: none; }
  .hero, .how { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .stats, .features, .motive-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .review-action { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .about { grid-template-columns: 1fr; }
  .journey-visual { position: static; }
  .ti-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-stats { grid-template-columns: repeat(2, 1fr); }
  .signal-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .signal-table-header, .signal-row { min-width: 680px; }
}
@media (max-width: 620px) {
  .navbar { padding: 0 4%; }
  .nav-btn { padding: 11px 14px; font-size: .8rem; }
  .section-padding { padding: 58px 5%; }
  .stats, .features, .motive-grid { grid-template-columns: 1fr; }
  .hero { gap: 20px; }
  h1 { font-size: 4.5rem; }
  .hero h2 { font-size: 2.45rem; }
  .phone-card { width: 270px; height: 520px; }
  .glow { width: 360px; height: 360px; }
  .about-point { grid-template-columns: 46px 1fr; }
  .ti-grid { grid-template-columns: 1fr; }
  .signal-stats { grid-template-columns: repeat(2, 1fr); }
  .signal-cta { padding: 30px 20px; }
  .signal-cta h3 { font-size: 1.3rem; }
  .signal-stat strong { font-size: 1.2rem; }
  .home-logo-wrap { width: 138px; height: 138px; }
  .home-logo { width: 94px; }
  .menu-link { grid-template-columns: 48px 1fr auto; gap: 14px; padding: 16px 16px; }
  .menu-emoji { width: 48px; height: 48px; font-size: 1.45rem; }
  .menu-title { font-size: 1.02rem; }
  .menu-desc { font-size: .82rem; }
}
