/* ============================================================
   Pasör — Landing page styles
   Light theme: white surfaces + #4CAF50 green, per the player app.
   Display face: Plus Jakarta Sans. Body: Roboto. Tokens from _ds.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#root { overflow-x: clip; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.04;
  color: var(--text-strong);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(76,175,80,.10);
  padding: 7px 13px; border-radius: 999px;
}
.eyebrow .ms { font-size: 15px; }

.section { padding: 104px 0; position: relative; }
.section--scaffold { background: var(--bg-scaffold); }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -1.4px; line-height: 1.06;
  font-size: clamp(30px, 4.4vw, 46px);
  color: var(--text-strong);
  margin: 18px 0 0;
  text-wrap: balance;
}
.section-head p {
  font-size: 18px; line-height: 1.6; color: var(--text-muted);
  margin: 16px 0 0; max-width: 620px;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px; letter-spacing: 1.5px;
  color: var(--text-strong);
}
.wordmark img { width: 30px; height: 30px; border-radius: 8px; }
.wordmark .accent { color: var(--green-600); }
.nav__links { display: flex; gap: 26px; margin-left: 14px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--text-muted);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--green-700); }
.nav__spacer { flex: 1; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 7px;
  height: 44px; padding: 0 22px; border-radius: 999px;
  background: var(--primary-gradient); color: #fff;
  font-weight: 700; font-size: 14.5px; letter-spacing: .3px;
  box-shadow: var(--shadow-primary-soft);
  transition: transform .15s ease, box-shadow .2s ease;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 12% 0%, rgba(76,175,80,.16), transparent 60%),
    radial-gradient(50% 60% at 100% 20%, rgba(102,187,106,.12), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(76,175,80,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(75% 75% at 30% 30%, #000, transparent 75%);
          mask-image: radial-gradient(75% 75% at 30% 30%, #000, transparent 75%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: -2px; line-height: 1.02;
  font-size: clamp(40px, 6.2vw, 70px);
  color: var(--text-strong); margin: 22px 0 0;
}
.hero h1 .hl { color: var(--green-600); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px; z-index: -1;
  background: rgba(76,175,80,.18); border-radius: 3px;
}
.hero__sub { font-size: 19px; line-height: 1.6; color: var(--text-muted); margin: 22px 0 0; max-width: 480px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; gap: 30px; margin-top: 40px; }
.hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--text-strong); letter-spacing: -1px; }
.hero__stat .l { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.hero__stat .l b { color: var(--green-700); font-weight: 700; }

/* store buttons */
.store {
  display: inline-flex; align-items: center; gap: 11px;
  height: 56px; padding: 0 22px 0 18px; border-radius: 16px;
  background: var(--ink-900); color: #fff;
  transition: transform .15s ease, box-shadow .2s ease;
}
.store:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.store .ms { font-size: 26px; }
.store .t { text-align: left; line-height: 1.1; }
.store .t small { display: block; font-size: 11px; opacity: .72; font-weight: 500; }
.store .t span { font-size: 17px; font-weight: 700; letter-spacing: .2px; }
.store--soon { background: var(--surface-200); color: var(--text-muted); cursor: default; }
.store--soon:hover { transform: none; box-shadow: none; }
.store--soon .t small { opacity: 1; }
.store--ghost { background: #fff; color: var(--text-strong); border: 1.5px solid var(--border); }

/* phone mock */
.phone {
  position: relative; width: 300px; margin: 0 auto; aspect-ratio: 300 / 620;
  background: #0d0d0f; border-radius: 44px; padding: 11px;
  box-shadow: 0 40px 90px -30px rgba(27,94,32,.55), 0 18px 50px rgba(0,0,0,.22);
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--surface-100);
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #0d0d0f; border-radius: 0 0 16px 16px; z-index: 4;
}
.phone image-slot { width: 100%; height: 100%; }
.phone__float {
  position: absolute; z-index: 5; background: #fff;
  border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.16);
  padding: 11px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-strong);
}
.hero__mock { position: relative; }
.hero__float-a { position: absolute; top: 64px; left: -26px; z-index: 6; }
.hero__float-b { position: absolute; bottom: 78px; right: -22px; z-index: 6; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(76,175,80,.16); }

/* ---------- Feature cards ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.feat {
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  padding: 28px; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); border-color: rgba(76,175,80,.3); }
.feat.span2 { grid-column: span 2; display: flex; gap: 28px; align-items: center; }
.feat__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(76,175,80,.12); color: var(--green-600); margin-bottom: 18px;
}
.feat__icon .ms { font-size: 28px; }
.feat h3 { font-size: 19px; font-weight: 800; color: var(--text-strong); margin: 0 0 8px; font-family: var(--font-display); letter-spacing: -.4px; }
.feat p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.feat__pay { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 12px; color: var(--text-faint); }
.feat__pay b { color: var(--green-700); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step__n {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff;
  background: var(--primary-gradient); box-shadow: var(--shadow-primary-soft); margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 800; color: var(--text-strong); margin: 0 0 8px; font-family: var(--font-display); letter-spacing: -.4px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.step__line { position: absolute; top: 33px; left: 62px; right: -12px; height: 2px; background: repeating-linear-gradient(90deg, var(--green-300) 0 7px, transparent 7px 14px); }

/* audience split */
.aud { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.aud__card {
  border-radius: 20px; padding: 30px; border: 1px solid var(--border-subtle);
  background: #fff; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.aud__card.player { background: linear-gradient(180deg, rgba(76,175,80,.07), rgba(76,175,80,.02)); border-color: rgba(76,175,80,.22); }
.aud__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.aud__head .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(76,175,80,.12); color: var(--green-600); }
.aud__head .ic.owner { background: rgba(25,118,210,.12); color: var(--blue-500); }
.aud__head .ms { font-size: 26px; }
.aud__head h3 { margin: 0; font-size: 21px; font-weight: 800; color: var(--text-strong); font-family: var(--font-display); letter-spacing: -.5px; }
.aud ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.aud li { display: flex; gap: 11px; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.aud li .ms { font-size: 20px; color: var(--green-600); flex: none; }
.aud li b { color: var(--text-strong); }
.callout {
  display: flex; gap: 12px; margin-top: auto; padding: 15px 16px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
}
.callout.warn { background: rgba(244,67,54,.07); color: #b71c1c; }
.callout.gift { background: rgba(76,175,80,.10); color: var(--green-800); }
.callout .ms { font-size: 20px; flex: none; }

/* ---------- Lobby (interactive) ---------- */
.lobby-band { background: var(--bg-scaffold); }
.lobby-grid { display: grid; grid-template-columns: 420px 1fr; gap: 56px; align-items: center; margin-top: 52px; }
.lobby-panel {
  background: #fff; border-radius: 24px; border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card-lg); overflow: hidden;
}
.lobby-steps-list { display: grid; gap: 14px; margin: 30px 0; }
.lobby-step-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; transition: background .2s ease; cursor: pointer; }
.lobby-step-row.active { background: rgba(76,175,80,.08); }
.lobby-step-row .ix { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: none; background: var(--surface-200); color: var(--text-muted); transition: all .2s ease; font-family: var(--font-display); }
.lobby-step-row.active .ix, .lobby-step-row.done .ix { background: var(--primary-gradient); color: #fff; }
.lobby-step-row h4 { margin: 3px 0 3px; font-size: 16px; font-weight: 700; color: var(--text-strong); }
.lobby-step-row p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.lobby-controls { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.play-btn { display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 22px; border-radius: 999px; border: none; cursor: pointer; background: var(--primary-gradient); color: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 15px; box-shadow: var(--shadow-primary-soft); transition: transform .15s ease; }
.play-btn:hover { transform: translateY(-2px); }
.lobby-progress { flex: 1; height: 6px; border-radius: 3px; background: var(--surface-200); overflow: hidden; }
.lobby-progress > i { display: block; height: 100%; background: var(--primary-gradient); border-radius: 3px; transition: width .25s linear; }

/* ---------- FIFA card section ---------- */
.fifa-band { background: var(--white); position: relative; overflow: hidden; }
.fifa-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; margin-top: 52px; }
.fifa-stage { position: relative; display: grid; place-items: center; padding: 40px 0; }
.fifa-stage::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,94,32,.16), transparent 68%);
}
.tier-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.tier-tab {
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--border);
  background: #fff; font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: .5px;
  color: var(--text-muted); cursor: pointer; transition: all .18s ease;
}
.tier-tab:hover { border-color: var(--green-400); color: var(--green-700); }
.tier-tab.active { color: #fff; border-color: transparent; box-shadow: var(--shadow-card); }
.skills-meta { display: grid; gap: 14px; margin-top: 26px; }
.skill-row { display: flex; align-items: center; gap: 14px; }
.skill-row .lab { width: 132px; font-size: 13.5px; color: var(--text-body); font-weight: 600; }
.skill-row .bar { flex: 1; height: 8px; border-radius: 4px; background: var(--surface-200); overflow: hidden; }
.skill-row .bar > i { display: block; height: 100%; border-radius: 4px; background: var(--primary-gradient); transition: width .5s cubic-bezier(.2,.7,.2,1); }
.skill-row .val { width: 30px; text-align: right; font-weight: 800; font-size: 14px; color: var(--text-strong); font-family: var(--font-display); }

/* ---------- Owner / pricing ---------- */
.owner-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; margin: 48px 0; }
.owner-side__h { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.6px; color: var(--text-strong); margin: 0 0 18px; }
.owner-bullets { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.owner-bullets li { display: flex; gap: 11px; font-size: 16px; line-height: 1.5; color: var(--text-body); }
.owner-bullets li .ms { font-size: 21px; color: var(--green-600); flex: none; }
.owner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; }
.owner-stat { background: #fff; border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card); padding: 24px; text-align: center; }
.owner-stat .n { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -1.5px; color: var(--green-600); }
.owner-stat .l { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; }
.price {
  position: relative; border-radius: 20px; padding: 30px; background: #fff;
  border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card);
}
.price.feature { border: 2px solid var(--green-500); box-shadow: 0 18px 50px rgba(76,175,80,.16); }
.price__tag { position: absolute; top: -13px; right: 24px; background: var(--primary-gradient); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-primary-soft); }
.price h3 { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: var(--text-strong); font-family: var(--font-display); letter-spacing: -.4px; }
.price__price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0; }
.price__price .amt { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -1.5px; color: var(--text-strong); }
.price__price .per { font-size: 14px; color: var(--text-muted); }
.price ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.price li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-body); line-height: 1.45; }
.price li .ms { font-size: 19px; color: var(--green-600); flex: none; }
.price__note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 4px; display: flex; align-items: center; gap: 18px; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-strong); letter-spacing: -.3px; }
.faq-q .ms { margin-left: auto; color: var(--green-600); transition: transform .25s ease; flex: none; }
.faq-q[aria-expanded="true"] .ms { transform: rotate(180deg); }
.faq-a { overflow: hidden; height: 0; transition: height .28s ease; }
.faq-a__inner { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); }
.faq-a__inner b, .faq-a__inner strong { color: var(--text-strong); }
.faq-a__inner ul { margin: 10px 0 0; padding-left: 18px; }
.faq-a__inner li { margin: 6px 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(50% 80% at 80% 0%, rgba(102,187,106,.5), transparent 60%); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; padding: 92px 0; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -1.6px; font-size: clamp(32px, 5vw, 52px); margin: 0; text-wrap: balance; }
.cta-band p { font-size: 19px; opacity: .9; margin: 18px auto 0; max-width: 520px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.cta-band .store { background: #fff; color: var(--ink-900); }
.cta-band .store--soon { background: rgba(255,255,255,.16); color: rgba(255,255,255,.86); }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 72px 0 36px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .wordmark { color: #fff; }
.footer__about { font-size: 14.5px; line-height: 1.6; max-width: 300px; margin: 18px 0 0; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .4px; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer a { font-size: 14px; transition: color .15s ease; }
.footer a:hover { color: var(--green-300); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .15s ease; }
.footer__social a:hover { background: rgba(255,255,255,.16); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; flex-wrap: wrap; }
.footer__pay { display: flex; align-items: center; gap: 9px; }

/* ---------- Find player / find match (under lobby) ---------- */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.find-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px;
  box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.find-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.find-ic { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; background: rgba(76,175,80,.12); color: var(--green-600); }
.find-ic.blue { background: rgba(25,118,210,.12); color: var(--blue-500); }
.find-ic .ms { font-size: 26px; }
.find-card h3 { margin: 2px 0 8px; font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -.4px; color: var(--text-strong); }
.find-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); }

/* ---------- Social network section ---------- */
.social-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.social-mock { position: relative; display: grid; place-items: center; }
.phone--sm { width: 270px; aspect-ratio: 270 / 560; }
.phone--sm .phone__screen { display: flex; flex-direction: column; }
.social-stories { display: flex; gap: 12px; padding: 38px 14px 14px; background: #fff; border-bottom: 1px solid var(--border-subtle); overflow: hidden; }
.story { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.story__ring { width: 50px; height: 50px; border-radius: 50%; padding: 2px; display: grid; place-items: center; background: var(--surface-200); }
.story__ring.on { background: var(--story-grad); }
.story__av { width: 100%; height: 100%; border-radius: 50%; border: 2px solid #fff; display: grid; place-items: center; background: var(--green-600); color: #fff; font-weight: 800; font-size: 16px; }
.story small { font-size: 11px; color: var(--text-muted); }
.social-mock image-slot { flex: 1; width: 100%; }
.social-float { position: absolute; z-index: 6; }
.social-list { display: grid; gap: 20px; margin-top: 30px; }
.social-item { display: flex; gap: 16px; align-items: flex-start; }
.social-item__ic { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center; background: rgba(76,175,80,.12); color: var(--green-600); }
.social-item__ic.gold { background: rgba(255,193,7,.16); color: #F9A825; }
.social-item__ic .ms { font-size: 24px; }
.social-item h4 { margin: 4px 0 5px; font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -.3px; color: var(--text-strong); }
.social-item p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); }

/* ---------- Faux in-app screen (hero phone) ---------- */
.pa { height: 100%; display: flex; flex-direction: column; background: var(--surface-100); font-family: var(--font-sans); }
.pa__status { display: flex; justify-content: space-between; align-items: center; padding: 30px 18px 5px; font-size: 12px; font-weight: 700; color: var(--ink-900); background: #fff; }
.pa__status-ic { display: flex; gap: 5px; } .pa__status-ic .ms { font-size: 15px; }
.pa__bar { display: flex; align-items: center; justify-content: space-between; padding: 4px 16px 12px; background: #fff; }
.pa__loc { display: flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 700; color: var(--ink-900); }
.pa__loc .ms { font-size: 18px; color: var(--green-600); }
.pa__bell { position: relative; } .pa__bell .ms { font-size: 22px; color: var(--ink-700); }
.pa__bell i { position: absolute; top: 1px; right: 1px; width: 7px; height: 7px; border-radius: 50%; background: var(--red-500); border: 1.5px solid #fff; }
.pa__body { flex: 1; overflow: hidden; padding: 13px 15px; background: var(--surface-100); }
.pa__hi { font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -.4px; color: var(--ink-900); }
.pa__sub { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }
.pa__match { margin-top: 13px; border-radius: 16px; padding: 15px; color: #fff; background: linear-gradient(135deg, var(--green-400), var(--green-600)); box-shadow: var(--shadow-primary-soft); }
.pa__match-top { display: flex; justify-content: space-between; align-items: center; }
.pa__chip { font-size: 10px; font-weight: 800; letter-spacing: 1px; opacity: .92; }
.pa__today { display: flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; background: rgba(255,255,255,.2); padding: 3px 8px; border-radius: 999px; }
.pa__match-time { font-family: var(--font-display); font-size: 33px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-top: 5px; }
.pa__match-venue { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; opacity: .95; margin-top: 2px; }
.pa__match-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; }
.pa__avs { display: flex; align-items: center; }
.pa__av { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--green-500); background: #fff; color: var(--green-700); font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.pa__av--n { background: rgba(255,255,255,.25); color: #fff; border-color: rgba(255,255,255,.6); }
.pa__kadro { font-size: 11.5px; font-weight: 700; background: rgba(255,255,255,.2); padding: 5px 10px; border-radius: 999px; }
.pa__quick { display: flex; gap: 8px; margin-top: 13px; }
.pa__q { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 11px 4px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-card); font-size: 11px; font-weight: 600; color: var(--ink-700); }
.pa__q .ms { font-size: 21px; color: var(--green-600); }
.pa__sec { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; margin-bottom: 8px; }
.pa__sec span { font-size: 14px; font-weight: 800; color: var(--ink-900); }
.pa__sec a { font-size: 12px; font-weight: 700; color: var(--green-600); }
.pa__saha { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px; padding: 9px; box-shadow: var(--shadow-card); margin-bottom: 8px; }
.pa__thumb { width: 46px; height: 46px; border-radius: 11px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, var(--green-800), var(--green-400)); }
.pa__thumb .ms { color: #fff; font-size: 24px; }
.pa__saha-info { flex: 1; min-width: 0; }
.pa__saha-name { font-size: 13px; font-weight: 700; color: var(--ink-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pa__saha-meta { display: flex; align-items: center; gap: 3px; font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.pa__saha-price { font-size: 12.5px; font-weight: 800; color: var(--green-700); margin-top: 2px; }
.pa__saha-price small { font-weight: 600; color: var(--text-faint); font-size: 10px; }
.pa__slot { font-size: 10.5px; font-weight: 700; color: var(--green-700); background: rgba(76,175,80,.12); padding: 5px 8px; border-radius: 999px; flex: none; }
.pa__nav { margin-top: auto; border-top: 1px solid var(--border-subtle); }

/* press feedback + interactive screens */
.pa__press { border: none; font-family: var(--font-sans); cursor: pointer; transition: transform .1s ease, filter .15s ease; -webkit-tap-highlight-color: transparent; }
.pa__press:active { transform: scale(.97); }
.pa button, .pa a { cursor: pointer; }
.pa__title { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--ink-900); letter-spacing: -.3px; }
.pa__sec a { cursor: pointer; }
.pa__match { width: 100%; text-align: left; display: block; }
.pa__q { width: auto; }
.pa__body { animation: lobbyFade .25s ease; }

/* Saha screen */
.pa__search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 13px; font-size: 13px; color: var(--text-faint); box-shadow: var(--shadow-input); }
.pa__search .ms { font-size: 19px; color: var(--text-muted); }
.pa__filters { display: flex; gap: 7px; margin: 12px 0; overflow: hidden; }
.pa__filter { padding: 7px 13px; border-radius: 999px; background: #fff; border: 1.5px solid var(--border); font-size: 12px; font-weight: 700; color: var(--text-muted); }
.pa__filter.on { background: var(--primary-gradient); color: #fff; border-color: transparent; }

/* Lobi screen */
.pa__vs { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: #fff; border-radius: 14px; padding: 16px 14px; box-shadow: var(--shadow-card); margin-bottom: 12px; }
.pa__vs-team { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 13px; font-weight: 800; color: var(--ink-900); flex: 1; }
.pa__vs-team small { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.pa__shield { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.pa__vs-mid { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text-faint); }
.pa__lobi-wait, .pa__lobi-ok { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-body); background: var(--surface-100); border-radius: 12px; padding: 12px; }
.pa__lobi-ok { background: rgba(76,175,80,.1); color: var(--green-800); }
.pa__cta { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; height: 48px; margin-top: 14px; border-radius: 999px; background: var(--primary-gradient); color: #fff; font-size: 15px; font-weight: 700; box-shadow: var(--shadow-primary-soft); }

/* Feed screen */
.pa__story-row { display: flex; gap: 12px; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border-subtle); }
.pa__post-head { display: flex; align-items: center; gap: 9px; }
.pa__post-name { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.pa__post-time { font-size: 11px; color: var(--text-muted); }
.pa__post-text { font-size: 13px; color: var(--text-body); margin: 10px 0; line-height: 1.45; }
.pa__post-img { height: 110px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--green-700), var(--green-400)); }
.pa__post-acts { display: flex; gap: 16px; margin-top: 10px; }
.pa__act { display: flex; align-items: center; gap: 5px; background: none; border: none; font-size: 13px; font-weight: 700; color: var(--text-muted); font-family: var(--font-sans); }
.pa__act .ms { font-size: 20px; }
.pa__act.liked { color: var(--red-500); }
.pa__act.liked .ms { color: var(--red-500); }

/* Profil screen */
.pa__profile { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 0 14px; }
.pa__pf-av { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-gradient); color: #fff; font-size: 26px; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-primary-soft); }
.pa__pf-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--ink-900); margin-top: 4px; }
.pa__pf-sub { font-size: 12px; color: var(--text-muted); }
.pa__pf-tier { margin-top: 6px; font-size: 12px; font-weight: 800; letter-spacing: 1px; color: #fff; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, #7B2FCF, #4A1A8A); }
.pa__pf-stats { display: flex; background: #fff; border-radius: 14px; box-shadow: var(--shadow-card); overflow: hidden; }
.pa__pf-stats > div { flex: 1; text-align: center; padding: 13px 6px; }
.pa__pf-stats > div + div { border-left: 1px solid var(--border-subtle); }
.pa__pf-stats b { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--green-700); }
.pa__pf-stats small { font-size: 11px; color: var(--text-muted); }
.pa__rel { height: 8px; border-radius: 4px; background: var(--surface-200); overflow: hidden; }
.pa__rel > i { display: block; height: 100%; border-radius: 4px; background: var(--primary-gradient); }

/* tap hint under phone */
.phone__hint { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); }
.phone__hint .ms { font-size: 16px; color: var(--green-600); }

/* hero phone = real-screenshot viewer */
.hero-cap { text-align: center; margin-top: 18px; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.3px; color: var(--text-strong); }
.hero-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 12px; }
.nav-arrow.sm { width: 46px; height: 46px; }
.nav-arrow.sm .ms { font-size: 24px; }

/* ---------- Single-phone screenshot viewer ---------- */
.showcase-band { background: var(--bg-scaffold); overflow: hidden; }
.single { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 4vw, 46px); margin-top: 46px; }
.single-stage { display: flex; flex-direction: column; align-items: center; }
.single-frame { width: 300px; border-radius: 42px; padding: 9px; background: #0d0d0f; box-shadow: 0 40px 80px -28px rgba(27,94,32,.5), 0 16px 44px rgba(0,0,0,.22); }
.single-screen { position: relative; width: 100%; aspect-ratio: 9 / 19.5; border-radius: 33px; overflow: hidden; background: var(--surface-200); }
.single-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.single-cap { text-align: center; margin-top: 22px; font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--text-strong); letter-spacing: -.4px; animation: shotFade .42s ease; }
.single-cap small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: 14px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0; }
.nav-arrow { flex: none; width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--border-subtle); background: #fff; box-shadow: var(--shadow-card-lg); cursor: pointer; display: grid; place-items: center; color: var(--ink-900); transition: background .18s ease, color .18s ease, transform .18s ease; }
.nav-arrow:hover { background: var(--green-500); color: #fff; transform: scale(1.07); }
.nav-arrow:active { transform: scale(.95); }
.nav-arrow .ms { font-size: 30px; }
.car-dots { display: flex; gap: 9px; justify-content: center; margin-top: 28px; }
.car-dots button { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: var(--surface-200); cursor: pointer; transition: width .25s ease, background .25s ease; }
.car-dots button.on { width: 26px; border-radius: 5px; background: var(--primary-gradient); }

/* feed image inside the social phone */
.phone-shot { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Mobile sticky download bar ---------- */
.mobile-bar { display: none; }
.mobile-bar img { width: 38px; height: 38px; border-radius: 9px; flex: none; }
.mobile-bar__txt { flex: 1; line-height: 1.25; min-width: 0; }
.mobile-bar__txt b { display: block; font-size: 14px; font-weight: 800; color: var(--ink-900); }
.mobile-bar__txt small { font-size: 11px; color: var(--text-muted); }
.mobile-bar__btn { display: inline-flex; align-items: center; gap: 6px; flex: none; background: var(--primary-gradient); color: #fff; font-weight: 700; font-size: 13px; padding: 10px 15px; border-radius: 999px; box-shadow: var(--shadow-primary-soft); white-space: nowrap; }
.mobile-bar__btn .ms { font-size: 16px; }

/* ---------- Animations ---------- */
@keyframes fifaPop { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.fifa-pop { animation: fifaPop .28s cubic-bezier(.2,.7,.2,1); }

@keyframes lobbyFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lobby-fade { animation: lobbyFade .3s ease; }

@keyframes radarPulse { 0% { box-shadow: 0 0 0 0 rgba(76,175,80,.35); } 100% { box-shadow: 0 0 0 26px rgba(76,175,80,0); } }
.lobby-radar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: rgba(76,175,80,.12); animation: radarPulse 1.6s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .fifa-pop, .lobby-fade, .lobby-radar { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__mock { order: -1; }
  .hero__sub, .hero h1 { max-width: none; }
  .lobby-grid, .fifa-grid { grid-template-columns: 1fr; gap: 40px; }
  .fifa-grid .fifa-stage { order: -1; }
  .social-grid { grid-template-columns: 1fr; gap: 40px; }
  .social-mock { order: -1; }
  .owner-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .owner-side { width: 100%; max-width: 520px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat.span2 { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 18px; }
  .section { padding: 72px 0; }
  .mobile-bar {
    position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 60;
    display: flex; align-items: center; gap: 11px; padding: 9px 11px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle); border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  body { padding-bottom: 84px; }
  .nav__links { display: none; }
  .nav__cta span.full { display: none; }
  .feat-grid, .steps, .aud, .price-grid, .owner-stats, .find-grid { grid-template-columns: 1fr; }
  .single { gap: 6px; }
  .single-frame { width: min(74vw, 270px); }
  .nav-arrow { width: 46px; height: 46px; }
  .nav-arrow .ms { font-size: 24px; }
  .feat.span2 { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 18px; }
  .step__line { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__float-a, .hero__float-b { display: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
