:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #141414;
  --panel-hover: #1a1a1a;
  --yellow: #f7ba18;
  --yellow-soft: #f7c93c;
  --orange: #b97f1f;
  --red: #9d0f15;
  --white: #f7f2e9;
  --muted: #aaa49a;
  --line: rgba(247, 186, 24, .18);
  --max: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px 3px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(6,6,6,.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 34px;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.nav a {
  position: relative;
  padding: 30px 0;
  color: #d8d4cd;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--yellow);
  transition: right .2s ease;
}

.nav a:hover {
  color: var(--yellow);
}

.nav a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 36px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
}

.hero {
  min-height: 820px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/banner.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.72) 35%, rgba(0,0,0,.26) 67%, rgba(0,0,0,.35) 100%),
    linear-gradient(0deg, #080808 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  margin: 70px auto 0;
  max-width: var(--max);
}

.eyebrow,
.section-kicker {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--yellow);
}

.hero h1,
.section h2,
.discovery h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: clamp(4.8rem, 9vw, 9.2rem);
  line-height: .82;
  max-width: 780px;
  text-shadow: 0 8px 30px rgba(0,0,0,.5);
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  width: min(610px, 100%);
  margin-top: 30px;
  color: #d2cec7;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-width: 170px;
  height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #080808;
  box-shadow: 0 10px 35px rgba(247,186,24,.16);
}

.btn-primary:hover {
  background: var(--yellow-soft);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(10,10,10,.48);
}

.btn-ghost:hover {
  border-color: var(--yellow);
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.55);
  font-size: .62rem;
  letter-spacing: .2em;
}

.scroll-hint i {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--yellow), transparent);
}

.section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: .92;
  margin: 14px 0 18px;
}

.section-heading h2 span {
  color: var(--yellow);
}

.section-heading p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 650px;
}

.starter-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

.starter-card {
  min-height: 300px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 55%),
    var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.starter-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 3px;
  background: var(--yellow);
  right: -80px;
  top: 30px;
  transform: rotate(-35deg);
  opacity: .45;
}

.starter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247,186,24,.38);
  background-color: var(--panel-hover);
}

.starter-card-featured {
  background:
    linear-gradient(145deg, rgba(247,186,24,.12), transparent 58%),
    var(--panel);
}

.card-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: rgba(255,255,255,.18);
}

.starter-card small {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: .12em;
}

.starter-card h3 {
  margin: 8px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}

.starter-card p {
  color: var(--muted);
  line-height: 1.65;
}

.starter-card > a {
  margin-top: 25px;
  color: var(--yellow);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.starter-card > a span {
  margin-left: 7px;
}

.guide {
  border-top: 1px solid rgba(255,255,255,.06);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}

.guide-card {
  min-height: 190px;
  padding: 28px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 22px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #0c0c0c;
  transition: background .2s ease, color .2s ease;
}

.guide-card:hover {
  background: var(--yellow);
  color: #090909;
}

.guide-icon {
  height: 58px;
  min-width: 58px;
  padding: 0 8px;
  border: 1px solid rgba(247,186,24,.42);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: .04em;
  transition: border-color .2s ease, color .2s ease;
}

.guide-card:hover .guide-icon {
  color: #090909;
  border-color: rgba(0,0,0,.35);
}

.guide-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: .02em;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
  font-size: .9rem;
  transition: color .2s ease;
}

.guide-card:hover p {
  color: rgba(0,0,0,.72);
}

.guide-card b {
  font-size: 1.4rem;
}

.discovery {
  margin: 30px 0;
  padding: 100px 28px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.70)),
    url("assets/banner.png") center 62% / cover no-repeat;
  border-top: 1px solid rgba(247,186,24,.2);
  border-bottom: 1px solid rgba(247,186,24,.2);
}

.discovery-inner {
  width: min(var(--max), 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 50px;
  align-items: center;
}

.discovery-mark {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: "Bebas Neue", sans-serif;
  font-size: 7rem;
  transform: rotate(-4deg);
  box-shadow: 10px 10px 0 rgba(157,15,21,.5);
}

.discovery h2 {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: .95;
  margin: 14px 0 18px;
}

.discovery p {
  max-width: 760px;
  color: #cac5bd;
  line-height: 1.75;
}

.discovery strong {
  display: block;
  margin-top: 18px;
  color: var(--yellow);
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.09);
}

details {
  border-bottom: 1px solid rgba(255,255,255,.09);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 6px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.5rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 6px 28px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 850px;
}

footer {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

footer img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer strong {
  letter-spacing: .09em;
}

footer span,
footer p {
  color: #77736c;
  font-size: .78rem;
}

@media (max-width: 900px) {
  .topbar {
    height: 72px;
    padding-inline: 20px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 22px;
    flex-direction: column;
    gap: 0;
    background: rgba(7,7,7,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 16px 0;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.55)),
      linear-gradient(0deg, #080808 0%, transparent 28%);
  }

  .hero-content {
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.5rem);
  }

  .hero p {
    font-size: .94rem;
  }

  .section {
    width: calc(100% - 40px);
    padding: 90px 0;
  }

  .starter-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .discovery {
    padding: 80px 20px;
  }

  .discovery-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .discovery-mark {
    width: 110px;
    height: 110px;
    font-size: 5rem;
  }

  footer {
    width: calc(100% - 40px);
    padding: 35px 0;
    grid-template-columns: auto 1fr;
  }

  footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .starter-card {
    min-height: 260px;
  }

  .guide-card {
    grid-template-columns: 55px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .guide-icon {
    min-width: 48px;
    height: 48px;
    font-size: .92rem;
  }
}


/* ---------- Discord CTA ---------- */
.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px !important;
  margin-left: 4px;
  background: var(--yellow);
  color: #080808 !important;
  border: 1px solid var(--yellow);
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  transition: transform .2s ease, background .2s ease !important;
}

.discord-btn::after {
  display: none !important;
}

.discord-btn:hover {
  transform: translateY(-2px);
  background: var(--yellow-soft);
}

.discord-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.discord-strip {
  width: min(var(--max), calc(100% - 56px));
  margin: 30px auto 90px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(247,186,24,.22);
  background:
    linear-gradient(100deg, rgba(247,186,24,.12), transparent 48%),
    #101010;
  position: relative;
  overflow: hidden;
}

.discord-strip::after {
  content: "SK";
  position: absolute;
  right: 180px;
  top: -58px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 10rem;
  color: rgba(255,255,255,.018);
  transform: rotate(-8deg);
  pointer-events: none;
}

.discord-strip small {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: .14em;
}

.discord-strip h2 {
  margin-top: 5px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.discord-strip p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .88rem;
}

.discord-strip .btn {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .discord-btn {
    margin: 9px 0 0 !important;
    min-height: 46px;
  }

  .discord-strip {
    width: calc(100% - 40px);
    margin-bottom: 60px;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .discord-strip .btn {
    width: 100%;
  }
}


/* Header: logo senza etichetta testuale */
.brand {
  gap: 0;
}
