/* thefutbolguru — shared design system
   Dark, blunt, high-contrast. Brand mint accent. Anton headings, Montserrat body. */

:root {
  --bg: #0a0d0b;
  --bg-2: #10140f;
  --surface: #151b15;
  --surface-2: #1c241b;
  --border-line: #283026;
  --text: #f3f6f2;
  --muted: #99a597;
  --muted-2: #6f7a6c;
  --accent: #28e070;          /* pitch green under lights */
  --accent-press: #1bbd5b;
  --accent-ink: #04220f;
  --warn: #ff5a3c;
  --warn-soft: #2a140f;
  --max: 1080px;
  --read: 720px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.7);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Anton", "Montserrat", Impact, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 18px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(28px, 6vw, 32px); }
.read { max-width: var(--read); margin-left: auto; margin-right: auto; }

section { padding: 72px 0; position: relative; }
section.tight { padding: 48px 0; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: 0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.15rem, 2.4vw, 1.45rem); color: var(--text); }
.muted { color: var(--muted); }
.em { color: var(--accent); }
.up { text-transform: uppercase; letter-spacing: .04em; }
strong, b { color: #fff; font-weight: 700; }

/* one-line-per-thought blocks (his voice) */
.thoughts p { margin: 0 0 .85em; }
.thoughts .gap { height: .4em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font); font-weight: 800; font-size: 1.06rem;
  letter-spacing: -0.01em;
  padding: 18px 30px; border-radius: 12px; border: 0;
  background: var(--accent); color: var(--accent-ink);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 30px -8px rgba(40,224,112,.5);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(40,224,112,.6); }
.btn:active { transform: translateY(0); background: var(--accent-press); }
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-line); box-shadow: none;
}
.btn--ghost:hover { background: var(--surface); box-shadow: none; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 21px 34px; font-size: 1.15rem; }
.btn__sub { display: block; font-size: .72rem; font-weight: 600; opacity: .7; margin-top: 2px; }

/* ---------- Hero ---------- */
.hero {
  padding: 0; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(40,224,112,.16), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(40,224,112,.07), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border-line);
}
.hero__inner { padding-top: 86px; padding-bottom: 64px; position: relative; z-index: 2; }
.hero__art {
  position: absolute; top: 50%; transform: translateY(-50%);
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  width: clamp(240px, 30vw, 400px); height: auto;
  z-index: 1; pointer-events: none;
  filter: drop-shadow(0 24px 60px rgba(40,224,112,.12));
}
@media (max-width: 1080px) { .hero__art { display: none; } }
.hero h1 { max-width: 14ch; }
.hero h1 .em { display: inline; }
.hero .lead { max-width: 30ch; color: var(--muted); margin-top: 22px; }

/* pitch lines decoration */
.pitch-lines { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(transparent 0, transparent calc(100% - 1px), var(--border-line) 100%);
  background-size: 100% 64px; mask-image: linear-gradient(transparent, #000 30%, #000 60%, transparent); }

/* ---------- Pills / badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--surface); border: 1px solid var(--border-line);
  padding: 9px 14px; border-radius: 999px; font-size: .82rem; color: var(--muted);
  font-weight: 600;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------- Stat / proof strip ---------- */
.proof { border-top: 1px solid var(--border-line); border-bottom: 1px solid var(--border-line); background: var(--bg-2); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.proof__item { padding: 26px 18px; text-align: center; border-right: 1px solid var(--border-line); text-decoration: none; color: inherit; }
.proof__item:last-child { border-right: 0; }
a.proof__item { transition: background .2s ease; }
a.proof__item:hover { background: var(--surface); }
a.proof__item:hover .proof__num { color: var(--accent); }
.proof__num { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 400; letter-spacing: 0.01em; color: #fff; }
.proof__lab { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-top: 4px; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 16px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border-line);
  border-radius: var(--radius); padding: 26px;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
  background: var(--accent-ink); color: var(--accent); font-weight: 800; font-size: 1.1rem;
  border: 1px solid rgba(40,224,112,.3);
}
.card__val {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--font); font-weight: 800; font-size: .8rem; letter-spacing: .02em;
  color: var(--accent); background: var(--accent-ink);
  border: 1px solid rgba(40,224,112,.3);
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Value stack total (under cards) ---------- */
.stack-total {
  max-width: 520px; margin: 22px auto 0;
  background: var(--bg-2); border: 1px solid var(--border-line);
  border-radius: var(--radius); padding: 20px 26px;
}
.stack-total__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.stack-total__row + .stack-total__row { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-line); }
.stack-total__lab { color: var(--muted); font-size: 1rem; }
.stack-total__now .stack-total__lab { color: #fff; font-weight: 700; }
.stack-total__was { color: var(--muted-2); text-decoration: line-through; font-size: 1.25rem; font-weight: 700; }
.stack-total__price { font-family: var(--font-display); color: var(--accent); font-size: 2rem; }

/* ---------- Itemised value stack (in price box) ---------- */
.vstack { list-style: none; margin: 0 0 22px; padding: 0; text-align: left; }
.vstack li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border-line); font-size: .95rem; color: var(--muted); }
.vstack li > span:last-child { color: var(--text); font-weight: 700; white-space: nowrap; }
.vstack__total { font-weight: 800; }
.vstack__total > span { color: #fff !important; }
.vstack__total > span:last-child { color: var(--muted-2) !important; text-decoration: line-through; }

/* mistake list */
.mistake { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-line); }
.mistake:last-child { border-bottom: 0; }
.mistake__n { flex: 0 0 auto; font-size: 1.4rem; font-weight: 800; color: var(--accent); width: 2ch; }
.mistake__b h3 { font-size: 1.2rem; margin-bottom: .25em; }
.mistake__b p { color: var(--muted); margin: 0; }

/* checklist */
.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; border-radius: 6px;
  background: var(--accent-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2328e070' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat;
  border: 1px solid rgba(40,224,112,.3);
}
.cross li::before {
  background: var(--warn-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff5a3c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center/13px no-repeat;
  border-color: rgba(255,90,60,.3);
}

/* ---------- Opt-in form ---------- */
.optin {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow); max-width: 520px;
}
.optin h3 { font-size: 1.5rem; }
.field { display: grid; gap: 10px; }
.field input {
  width: 100%; padding: 17px 18px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border-line); color: var(--text);
  font-size: 1.05rem; font-family: var(--font);
}
.field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.field input::placeholder { color: var(--muted-2); }
.fineprint { font-size: .8rem; color: var(--muted-2); margin: 14px 0 0; text-align: center; }
.form-msg { font-size: .92rem; margin: 12px 0 0; min-height: 1.2em; }
.form-msg.err { color: var(--warn); }
.form-msg.ok { color: var(--accent); }

/* ---------- Price box ---------- */
.pricebox {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(40,224,112,.35); border-radius: var(--radius-lg);
  padding: 36px; text-align: center; box-shadow: var(--shadow); max-width: 540px; margin: 0 auto;
}
.price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 6px 0 4px; }
.price__now { font-family: var(--font-display); font-size: 3.8rem; font-weight: 400; letter-spacing: 0.01em; }
.price__was { font-size: 1.3rem; color: var(--muted-2); text-decoration: line-through; }
.price__note { color: var(--accent); font-weight: 700; font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border-line); padding: 6px 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-weight: 700; font-size: 1.1rem; color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--accent); transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding: 0 0 18px; margin: 0; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reviews img { border-radius: 10px; border: 1px solid var(--border-line); background: var(--surface); width: 100%; }

/* ---------- Sticky CTA bar ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(10,13,11,.86); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-line);
  transform: translateY(120%); transition: transform .3s ease;
  padding: 12px 0;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta__txt { font-weight: 700; font-size: .98rem; }
.sticky-cta__txt span { color: var(--muted); font-weight: 500; display: block; font-size: .8rem; }

/* ---------- Price countdown banner ---------- */
.price-banner {
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
  background: var(--warn-soft); color: var(--warn);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; text-align: center;
  padding: 10px 14px; border-bottom: 1px solid rgba(255,90,60,.3);
}
.price-banner__clock { font-variant-numeric: tabular-nums; color: #fff; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 40; background: rgba(10,13,11,.78); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-line); }
.nav__row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; object-fit: contain; display: block; }
.nav .btn { padding: 11px 18px; font-size: .92rem; white-space: nowrap; }
.brand span { white-space: nowrap; }

/* ---------- Callout / quote ---------- */
.callout {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 22px;
  font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.02em;
  color: #fff; margin: 8px 0;
}

/* divider rule */
.rule { height: 1px; background: var(--border-line); border: 0; margin: 0; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0; border-top: 1px solid var(--border-line); color: var(--muted-2); font-size: .88rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer__row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Urgency / guarantee ---------- */
.guarantee {
  display: flex; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border-line);
  border-radius: var(--radius); padding: 22px 26px; max-width: 620px; margin: 0 auto;
}
.guarantee__ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-ink); color: var(--accent); display: grid; place-items: center; }
.guarantee p { margin: 0; color: var(--muted); font-size: .95rem; }
.guarantee strong { color: #fff; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  body { font-size: 17px; }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(2) { border-right: 0; }
  .proof__item:nth-child(1), .proof__item:nth-child(2) { border-bottom: 1px solid var(--border-line); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta__txt span { display: none; }
  section { padding: 56px 0; }
  .hero__inner { padding-top: 60px; padding-bottom: 48px; }
}
@media (max-width: 520px) {
  .reviews { grid-template-columns: 1fr 1fr; }
  .nav .nav__cta-text { display: none; }
  .optin, .pricebox { padding: 24px; }
}
