/* ===================================================================
   Pitch Report — pitchreport.it.com
   Design system: cricket-green + gold on dark
   Fonts: Sora (display) + Inter (body)
   =================================================================== */

:root {
  --green: #12b256;
  --green-deep: #0a7d3b;
  --green-dark: #063d20;
  --gold: #f5b301;
  --gold-soft: #ffcf4d;
  --ink: #08110c;
  --panel: #0f1a13;
  --panel-2: #16241b;
  --card: #13201a;
  --line: #24382c;
  --text: #e7f2ea;
  --muted: #9fb6a8;
  --white: #ffffff;
  --danger: #e5484d;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 45px -20px rgba(0, 0, 0, .75);
  --wrap: 1180px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(18, 178, 86, .16), transparent 60%),
    radial-gradient(900px 500px at -5% 10%, rgba(245, 179, 1, .08), transparent 55%),
    var(--ink);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--white); }
a { color: var(--gold-soft); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 78px 0; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; font-size: .74rem;
  color: var(--gold); background: rgba(245, 179, 1, .09);
  border: 1px solid rgba(245, 179, 1, .28); padding: 6px 14px; border-radius: 100px;
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-deep)); color: #fff; box-shadow: 0 12px 30px -12px rgba(18, 178, 86, .8); }
.btn-primary:hover { color: #fff; box-shadow: 0 16px 36px -12px rgba(18, 178, 86, .95); }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #241a00; }
.btn-gold:hover { color: #241a00; }
.btn-ghost { background: rgba(255, 255, 255, .04); border-color: var(--line); color: var(--text); }
.btn-ghost:hover { color: #fff; border-color: var(--green); }
.btn-wa { background: #25d366; color: #04270f; }
.btn-wa:hover { color: #04270f; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 17, 12, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.24rem; color: #fff; }
.brand:hover { color: #fff; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 8px 20px -8px rgba(18, 178, 86, .9); font-size: 20px;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--text); font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  padding: 9px 15px; border-radius: 10px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(18, 178, 86, .14); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; transition: .25s; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; background: var(--panel);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    gap: 4px; padding: 16px 20px 24px; transform: translateY(-140%); transition: transform .3s ease;
    display: flex;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 10px; }
  .nav-cta .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 92px 0 74px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero p { margin: 20px 0 28px; font-size: 1.12rem; color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--gold); }
.hero-stats .lbl { font-size: .82rem; color: var(--muted); }
.hero-visual { position: relative; }
.hero-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow); transform: rotate(-1.4deg);
}
.hero-card img { width: 100%; height: auto; }
.hero-badge {
  position: absolute; bottom: -18px; left: -14px; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(18,178,86,.22); }
.hero-badge b { font-family: var(--font-head); color: #fff; }
.hero-badge small { display: block; color: var(--muted); font-size: .76rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform: none; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(18, 178, 86, .5); }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(18, 178, 86, .12); border: 1px solid rgba(18, 178, 86, .3);
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 14px 0 12px; }

/* ---------- Game thumbnails ---------- */
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 900px) { .thumbs { grid-template-columns: repeat(2, 1fr); } }
.thumb {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  position: relative; background: var(--card);
}
.thumb img { width: 100%; height: auto; transition: transform .35s ease; }
.thumb:hover img { transform: scale(1.06); }
.thumb .cap {
  position: absolute; inset: auto 0 0 0; padding: 22px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: #fff;
}

/* ---------- Tools ---------- */
.tool {
  background: linear-gradient(180deg, var(--panel-2), var(--card));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
}
.tool h3 { font-size: 1.28rem; display: flex; align-items: center; gap: 10px; }
.tool .hint { color: var(--muted); font-size: .92rem; margin: 6px 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; font-family: var(--font-head); }
.field input, .field select {
  width: 100%; padding: 12px 14px; border-radius: 11px; border: 1px solid var(--line);
  background: var(--ink); color: var(--text); font-family: var(--font-body); font-size: 1rem;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(18,178,86,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tool-out {
  margin-top: 18px; padding: 18px; border-radius: 12px; border: 1px dashed var(--line);
  background: rgba(18, 178, 86, .06); font-size: .96rem;
}
.tool-out .big { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--gold); }
.meter { height: 10px; border-radius: 100px; background: var(--ink); overflow: hidden; margin: 8px 0 4px; border: 1px solid var(--line); }
.meter > i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--green)); border-radius: 100px; transition: width .5s ease; }
.result-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.result-row:last-child { border-bottom: none; }
.result-row b { color: #fff; font-family: var(--font-head); }

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 18px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .n {
  counter-increment: s; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #04270f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.step .n::before { content: counter(s); }
.step h4 { font-size: 1.05rem; margin-bottom: 3px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Auth pages ---------- */
.auth { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 48px 0; }
.auth-card {
  width: 100%; max-width: 440px; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.7rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); margin-bottom: 24px; font-size: .95rem; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .82rem; margin: 20px 0; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.auth-foot { text-align: center; margin-top: 20px; color: var(--muted); font-size: .92rem; }
.checkline { display: flex; gap: 9px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 4px 0 18px; }
.checkline input { margin-top: 4px; accent-color: var(--green); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--card); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq-q .pm { color: var(--green); font-size: 1.4rem; line-height: 1; transition: transform .25s; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }

/* ---------- Article / legal ---------- */
.article { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: 1.6rem; margin: 36px 0 12px; }
.article h3 { font-size: 1.22rem; margin: 26px 0 10px; color: var(--gold-soft); }
.article p { color: var(--muted); margin-bottom: 14px; }
.article ul { margin: 0 0 16px 4px; }
.article ul li { color: var(--muted); padding: 6px 0 6px 28px; position: relative; }
.article ul li::before { content: "▹"; position: absolute; left: 6px; color: var(--green); }
.article strong { color: var(--text); }
.toc { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; margin-bottom: 30px; }
.toc h4 { margin-bottom: 10px; }
.toc a { display: block; padding: 4px 0; color: var(--muted); font-size: .95rem; }
.toc a:hover { color: var(--gold); }
.page-hero { padding: 60px 0 10px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero p { color: var(--muted); margin-top: 12px; max-width: 60ch; }
.breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px;
  text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 54ch; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--panel); padding: 56px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.footer-grid h5 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-grid a { display: block; color: var(--muted); padding: 5px 0; font-size: .94rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { color: var(--muted); font-size: .93rem; margin: 14px 0; max-width: 40ch; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .84rem; }
.age-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; font-size: .8rem; color: var(--muted); }
.age-badge b { color: var(--danger); font-family: var(--font-head); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7);
  animation: waPulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Notice / disclaimer strip ---------- */
.notice-strip {
  background: rgba(245, 179, 1, .08); border-top: 1px solid rgba(245,179,1,.2);
  border-bottom: 1px solid rgba(245,179,1,.2); text-align: center; padding: 10px 20px;
  font-size: .84rem; color: var(--gold-soft);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { font-size: .82rem; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; background: rgba(255,255,255,.02); }
