/* TrustedGameList — Stripe visual DNA · indigo-ink ledger on frosted glass
   Cool-white canvas · navy ink #061b31 · one indigo #533afd (solo azioni)
   Type: Inter Tight weight 300 (whisper headlines), 400 (UI). No shadows. 4px radii. */

:root {
  --indigo: #533afd;
  --indigo-hover: #7389ff;
  --ink: #061b31;
  --slate: #64748d;
  --steel: #50617a;
  --smoke: #839bc8;
  --white: #ffffff;
  --mist: #f8fafd;
  --frost: #e5edf5;
  --lavender: #b9b9f9;
  --lilac: #d6d9fc;
  --periwinkle: #e8e9ff;
  --deep-violet: #182659;

  --font-display: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r: 4px;
  --r-pill: 9999px;
  --container: 1320px;
  --pad-inline: 24px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--steel);
  background: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--periwinkle); color: var(--ink); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-inline); }
.section { padding-block: 88px; }
.section--mist { background: var(--mist); }

.eyebrow { display: inline-block; font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--indigo); margin: 0 0 18px; }
.section__head { margin-bottom: 48px; max-width: 720px; }
.section__title { font-size: clamp(32px, 4.6vw, 52px); font-weight: 300; letter-spacing: -0.028em; line-height: 1.04; }
.section__lede { margin: 24px 0 0; font-size: 21px; font-weight: 300; color: var(--slate); line-height: 1.4; max-width: 640px; letter-spacing: -0.015em; }

/* buttons — 4px radius, small */
.btn { display: inline-flex; align-items: center; gap: 7px; border-radius: var(--r); padding: 12px 22px; font-family: var(--font-body); font-weight: 400; font-size: 15px; letter-spacing: -0.01em; border: 1px solid transparent; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: var(--indigo-hover); }
.btn--ghost { background: transparent; color: var(--indigo); border-color: var(--lavender); }
.btn--ghost:hover { border-color: var(--indigo); background: var(--periwinkle); }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn__chev { transition: transform .2s var(--ease); }
.btn:hover .btn__chev { transform: translateX(3px); }

/* header */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; }
.header.has-scroll { border-bottom-color: var(--frost); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-family: var(--font-display); font-weight: 400; font-size: 21px; letter-spacing: -0.03em; color: var(--ink); }
.logo__accent { color: var(--indigo); }
.header__nav { display: flex; align-items: center; gap: 30px; }
.header__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.header__link { font-size: 15px; font-weight: 400; color: var(--steel); letter-spacing: -0.01em; transition: color .2s ease; }
.header__link:hover { color: var(--indigo); }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--frost); border-radius: var(--r); background: var(--white); align-items: center; justify-content: center; }
.burger svg { width: 20px; height: 20px; stroke: var(--ink); }

/* hero — split (ledger) */
.hero { padding-block: 76px 88px; border-bottom: 1px solid var(--frost); background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero__title { font-size: clamp(40px, 5.4vw, 58px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.02; color: var(--ink); }
.hero__title span { color: var(--indigo); }
.hero__lede { margin: 26px 0 0; font-size: 20px; font-weight: 300; color: var(--slate); line-height: 1.45; max-width: 480px; }
.hero__actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__tags { margin-top: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.tag { display: inline-flex; align-items: center; background: var(--periwinkle); color: var(--indigo); border-radius: var(--r-pill); padding: 5px 14px; font-size: 13px; font-weight: 400; }

/* hero ledger card */
.ledger { background: var(--white); border: 1px solid var(--frost); border-radius: 8px; overflow: hidden; }
.ledger__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--frost); background: var(--mist); }
.ledger__title { font-size: 14px; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
.ledger__badge { font-size: 12px; color: var(--indigo); background: var(--periwinkle); border-radius: var(--r-pill); padding: 3px 10px; }
.ledger__row { display: flex; align-items: center; gap: 14px; padding: 13px 20px; border-bottom: 1px solid var(--frost); }
.ledger__row:last-child { border-bottom: none; }
.ledger__ico { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; flex: none; border: 1px solid var(--frost); }
.ledger__ico img { width: 100%; height: 100%; object-fit: cover; }
.ledger__name { display: block; font-size: 15px; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
.ledger__genre { display: block; font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.ledger__rate { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 400; color: var(--ink); font-variant-numeric: tabular-nums; }
.ledger__rate svg { width: 15px; height: 15px; fill: var(--indigo); }

/* stats */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 4px 0; border-left: 2px solid var(--frost); padding-left: 24px; }
.stat__n { font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 52px); font-weight: 300; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.stat__n span { color: var(--indigo); }
.stat__l { margin: 12px 0 0; font-size: 15px; color: var(--slate); }

/* games */
.games__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.game { background: var(--white); border: 1px solid var(--frost); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; transition: border-color .2s var(--ease); }
.game:hover { border-color: var(--lavender); }
.game__top { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.game__icon { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex: none; border: 1px solid var(--frost); }
.game__icon img { width: 100%; height: 100%; object-fit: cover; }
.game__name { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }
.game__dev { font-size: 13px; color: var(--slate); margin-top: 3px; }
.game__genre { display: inline-block; font-size: 12px; font-weight: 400; color: var(--indigo); background: var(--periwinkle); border-radius: var(--r-pill); padding: 3px 12px; margin-bottom: 14px; align-self: flex-start; }
.game__shot { border-radius: var(--r); overflow: hidden; border: 1px solid var(--frost); margin-bottom: 16px; aspect-ratio: 16 / 10; background: var(--mist); }
.game__shot img { width: 100%; height: 100%; object-fit: cover; }
.game__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.stars { position: relative; display: inline-block; width: 90px; height: 15px; }
.stars__bg, .stars__fg { position: absolute; inset: 0; display: flex; gap: 2px; }
.stars__bg svg { fill: var(--frost); }
.stars__fg { overflow: hidden; }
.stars__fg svg { fill: var(--indigo); }
.stars svg { width: 15px; height: 15px; flex: none; }
.game__rating-num { font-weight: 400; color: var(--ink); font-size: 14px; font-variant-numeric: tabular-nums; }
.game__desc { font-size: 14.5px; line-height: 1.5; color: var(--steel); margin: 0 0 20px; flex: 1; }
.game__link { align-self: flex-start; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 400; color: var(--indigo); }
.game__link .btn__chev { transition: transform .2s var(--ease); }
.game__link:hover .btn__chev { transform: translateX(3px); }

/* method / trust */
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method { padding: 28px; border: 1px solid var(--frost); border-radius: var(--r); background: var(--white); }
.method__ico { width: 44px; height: 44px; border: 1px solid var(--lilac); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--periwinkle); }
.method__ico svg { width: 21px; height: 21px; stroke: var(--indigo); fill: none; }
.method__h { font-family: var(--font-display); font-size: 21px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 9px; }
.method__p { margin: 0; font-size: 15px; color: var(--steel); line-height: 1.55; }

/* transparency */
.mono__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--frost); border: 1px solid var(--frost); border-radius: 8px; overflow: hidden; margin-top: 44px; }
.mono { padding: 32px; background: var(--white); }
.mono__n { font-family: var(--font-display); font-size: 15px; color: var(--indigo); font-weight: 400; }
.mono__h { font-family: var(--font-display); font-size: 20px; color: var(--ink); font-weight: 400; margin: 14px 0 8px; letter-spacing: -0.02em; }
.mono__p { font-size: 14.5px; color: var(--steel); line-height: 1.55; margin: 0; }
.trasp__actions { margin-top: 36px; }

/* reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { border: 1px solid var(--frost); border-radius: var(--r); padding: 30px; background: var(--white); display: flex; flex-direction: column; gap: 18px; }
.review--feat { background: var(--periwinkle); border-color: var(--lilac); }
.review__stars { display: flex; gap: 3px; }
.review__stars svg { width: 16px; height: 16px; fill: var(--indigo); }
.review__quote { font-family: var(--font-display); font-size: 19px; font-weight: 300; line-height: 1.35; color: var(--ink); letter-spacing: -0.015em; margin: 0; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 400; font-size: 15px; }
.review__name { font-weight: 400; color: var(--ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--slate); }

/* FAQ */
.faq__list { width: 100%; border-top: 1px solid var(--frost); }
.faq__item { border-bottom: 1px solid var(--frost); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; background: none; border: none; font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; }
.faq__q svg { width: 20px; height: 20px; flex: none; stroke: var(--indigo); transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding-bottom: 26px; font-size: 16px; color: var(--steel); line-height: 1.6; max-width: 900px; }

/* steps */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 28px; border: 1px solid var(--frost); border-radius: var(--r); background: var(--white); }
.step__n { width: 38px; height: 38px; border-radius: 8px; background: var(--indigo); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 400; font-size: 17px; margin-bottom: 18px; }
.step__h { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px; }
.step__p { margin: 0; font-size: 14.5px; color: var(--steel); line-height: 1.55; }

/* subscribe */
.subscribe__wrap { max-width: 620px; margin-inline: auto; text-align: center; border: 1px solid var(--frost); border-radius: 8px; padding: 48px 44px; background: var(--white); }
.subform { margin-top: 30px; text-align: left; }
.subform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.subform__field { margin-bottom: 14px; }
.subform__field--full { grid-column: 1 / -1; }
.subform label { display: block; font-size: 13px; font-weight: 400; color: var(--ink); margin-bottom: 7px; }
.subform input[type="text"], .subform input[type="tel"], .subform input[type="email"] { width: 100%; padding: 13px 15px; border: 1px solid var(--frost); border-radius: var(--r); background: var(--white); font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--ink); transition: border-color .2s ease; }
.subform input:focus { outline: none; border-color: var(--indigo); }
.subform__consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 20px; }
.subform__consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--indigo); flex: none; }
.subform__consent label { margin: 0; font-size: 13px; color: var(--steel); line-height: 1.45; }
.subform__consent a { color: var(--indigo); text-decoration: underline; }
.subform__submit { width: 100%; justify-content: center; }
.subform__success { display: none; margin-top: 18px; padding: 15px 18px; border: 1px solid var(--lavender); border-radius: var(--r); color: var(--indigo); font-size: 14.5px; background: var(--periwinkle); }
.subform__success.is-visible { display: block; }

/* footer */
.footer { background: var(--mist); border-top: 1px solid var(--frost); padding-block: 60px 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer__tagline { margin: 16px 0 0; font-size: 15px; color: var(--slate); max-width: 320px; line-height: 1.55; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate); margin: 0 0 16px; font-weight: 400; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 15px; color: var(--steel); transition: color .2s ease; }
.footer__col a:hover { color: var(--indigo); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--frost); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 13px; color: var(--slate); }
.footer__contact { font-size: 13px; color: var(--steel); }
.footer__contact a { color: var(--indigo); }

/* back to top */
.totop { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 46px; height: 46px; border-radius: 8px; background: var(--white); border: 1px solid var(--frost); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, border-color .2s ease; }
.totop:hover { border-color: var(--indigo); }
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 19px; height: 19px; stroke: var(--indigo); fill: none; }

/* cookie */
.cookie { position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 60; max-width: 560px; margin-inline: auto; background: var(--white); border: 1px solid var(--frost); border-radius: 8px; padding: 22px 24px; display: none; box-shadow: 0 12px 40px -18px rgba(6,27,49,0.28); }
.cookie.is-visible { display: block; }
.cookie__text { font-size: 14px; line-height: 1.5; margin: 0 0 15px; color: var(--steel); }
.cookie__text a { color: var(--indigo); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; }

/* legal */
.legal { padding-block: 56px 80px; }
.legal__head { max-width: 820px; margin: 0 auto 36px; }
.legal__updated { font-size: 13px; color: var(--slate); margin: 0 0 20px; }
.legal__body { max-width: 820px; margin-inline: auto; }
.legal__body h2 { font-size: 27px; font-weight: 400; margin: 40px 0 12px; letter-spacing: -0.02em; }
.legal__body h3 { font-size: 19px; font-family: var(--font-display); font-weight: 400; margin: 24px 0 10px; color: var(--ink); }
.legal__body p, .legal__body li { font-size: 16px; color: var(--steel); line-height: 1.65; }
.legal__body ul { padding-left: 22px; }
.legal__body a { color: var(--indigo); text-decoration: underline; }
.legal__body strong { color: var(--ink); font-weight: 400; }
.backhome { margin-top: 8px; }

/* responsive */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 860px) {
  .games__grid, .method__grid, .mono__grid, .reviews__grid, .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .header__links { display: none; }
  .burger { display: flex; }
  .header__nav.is-open { position: fixed; inset: 68px 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--white); border-bottom: 1px solid var(--frost); padding: 18px var(--pad-inline) 26px; }
  .header__nav.is-open .header__links { display: grid; gap: 4px; }
  .header__nav.is-open .header__link { padding: 12px 0; font-size: 17px; }
  .header__nav.is-open .header__cta { margin-top: 12px; }
}
@media (max-width: 560px) {
  .section { padding-block: 60px; }
  .games__grid, .method__grid, .mono__grid, .reviews__grid, .steps__grid, .stats__grid, .subform__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .subscribe__wrap { padding: 34px 24px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; animation: none !important; } }
