/* ── Outfit — self-hosted (latin-ext pre SK diakritiku, latin pre základné znaky) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Tokens — Light (default) ───────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --warm-bg:      #faf9f7;
  --cta-bg:       #f0faf8;
  --surface:      #f4f7fc;
  --surface-hover:#e8edf8;
  --border:       #dce3f0;
  --text:         #0a0d16;
  --muted:        #5a6a8a;
  --accent:       #0ea58a;
  --accent-dark:  #0b8a73;
  --accent-text:  #0a6b59;
  --purple:       #6c5fd4;
  --font:         'Outfit', system-ui, -apple-system, sans-serif;
  --radius:       12px;
  --max-width:    1080px;
  --max-narrow:   640px;
  --nav-bg:       rgba(255, 255, 255, 0.88);
  color-scheme: light;
}


/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s, color 0.2s;
}
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout helpers ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.accent { color: var(--accent-text); }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 99px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--text);
  border: none;
}
.btn-primary:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-hero {
  padding: 16px 36px;
  font-size: 17px;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-text); text-decoration: none; }

/* ── SPP logo ───────────────────────────────────────────────────────── */
.spp-logo { display: flex; align-items: center; }
.spp-logo img { display: block; }


/* ── Nav ────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  background: var(--warm-bg);
}
.badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  letter-spacing: 0.1px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-proof {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.hero-parent {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.hero-parent a { text-decoration: underline; }

/* ── Sections ───────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); }
.section-cta {
  background: var(--cta-bg);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.15s;
}
.card:hover { border-color: var(--accent); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── Steps ──────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}
.step { flex: 1; }
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.step-micro { font-size: 13px; color: var(--accent-text); margin-top: 8px; font-weight: 500; }
.step-divider {
  color: var(--border);
  font-size: 22px;
  margin-top: 10px;
  flex-shrink: 0;
}

/* ── Scenarios ──────────────────────────────────────────────────────── */
.scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.scenario-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.15s;
}
.scenario-card:hover { box-shadow: 0 4px 20px rgba(108, 95, 212, 0.1); }
.scenario-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.scenario-duration {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 99px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.scenario-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.scenario-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.scenario-skills { font-size: 12px; color: var(--accent-text); font-weight: 500; }

/* ── Waitlist / Tally ───────────────────────────────────────────────── */
.tally-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  margin: 32px 0 20px;
  overflow: hidden;
}
.tally-wrapper iframe { display: block; border-radius: 8px; }
.form-reassurance {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.1px;
}
.cta-note { font-size: 14px; color: var(--muted); text-align: center; }
.cta-note a { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-inner p { color: var(--muted); font-size: 14px; }
.footer-partners {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer-partner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-partner-label {
  font-size: 12px;
  color: var(--muted);
}
.footer-partner img { display: block; }
.footer-links { display: flex; gap: 16px; font-size: 14px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .hero { padding: 60px 0 48px; }
  .section { padding: 48px 0; }
  .section-cta { padding: 48px 0; }

  /* Nav */
  .nav-spp { display: none; }
  .btn-outline { padding: 9px 18px; font-size: 14px; }

  /* Hero button — allow wrapping on narrow screens */
  .btn-primary { white-space: normal; text-align: center; line-height: 1.4; }
  .btn-hero { padding: 14px 28px; font-size: 16px; }

  /* Steps */
  .steps { flex-direction: column; }
  .step-divider { display: none; }

  /* Cards — force single column on phones */
  .cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-partners { flex-direction: column; gap: 16px; align-items: center; }
  .footer-links { display: block; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { padding: 48px 0 36px; }
  .section-sub { font-size: 15px; }
}

/* ── Hero extras ─────────────────────────────────────────────────────── */
.hero-parent-cta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.hero-parent-cta a { text-decoration: underline; }

/* ── Trust bar ───────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-item img { display: block; }
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-text);
  text-align: center;
  margin-bottom: 10px;
}


/* ── Audience split ──────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.audience-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.audience-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 20px;
}
.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audience-list li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.audience-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
  gap: 12px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-question { background: var(--surface); }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-question:hover { background: var(--surface); }
.faq-answer {
  padding: 4px 24px 20px;
}
.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Utility ─────────────────────────────────────────────────────────── */
.h2-left { text-align: left; }
.section-sub-left {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ── Game preview section ────────────────────────────────────────────── */
.game-preview-section { background: var(--surface); }
.game-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.moment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.moment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.moment-item strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.moment-item p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ── Game window (dark UI mockup / screenshot container) ─────────────── */
.game-preview-visual { position: relative; }
.game-window {
  background: #1a1c2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 14, 38, 0.28), 0 0 0 1px rgba(255,255,255,0.06);
  font-family: var(--font);
}
.game-topbar {
  background: #13152a;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.game-day {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.game-vis {
  display: flex;
  align-items: center;
  gap: 7px;
}
.vis-label { font-size: 11px; color: rgba(255,255,255,0.65); }
.vis-bar {
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.vis-fill { height: 100%; background: #0ea58a; border-radius: 2px; }
.vis-value { font-size: 11px; color: #0ea58a; font-weight: 700; }
.game-scene { padding: 20px 18px 12px; }
.game-narrator {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 12px;
}
.game-message {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
}
.gm-sender { font-size: 11px; font-weight: 700; color: #0ea58a; margin-bottom: 6px; }
.gm-text {
  font-size: 13px;
  color: rgba(232, 235, 245, 0.88);
  line-height: 1.5;
  margin-bottom: 8px;
}
.gm-source { font-size: 11px; color: rgba(255,255,255,0.6); }
.game-choices-area { padding: 12px 18px 18px; }
.game-choices-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.game-choice-btn {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(232, 235, 245, 0.75);
  margin-bottom: 6px;
  line-height: 1.4;
  cursor: default;
  transition: background 0.15s;
}
.game-choice-btn:last-child { margin-bottom: 0; }
.game-choice-focus {
  border-color: rgba(14, 165, 138, 0.35);
  background: rgba(14, 165, 138, 0.07);
  color: rgba(232, 235, 245, 0.92);
}
.game-caption {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

/* ── Mid-page CTA ────────────────────────────────────────────────────── */
.midpage-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}
.midpage-cta-text {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
}

/* ── Team / credibility section ──────────────────────────────────────── */
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.team-logo {
  height: 36px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.team-logo img { display: block; height: 36px; width: auto; }
.team-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Sharing block ───────────────────────────────────────────────────── */
.sharing-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sharing-text {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ── Responsive additions ────────────────────────────────────────────── */
@media (max-width: 680px) {
  .trust-sep { display: none; }
  .trust-item { padding: 5px 12px; font-size: 12px; }
  .audience-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .audience-col { padding: 24px 20px; }
  .faq-question { padding: 16px 20px; font-size: 14px; }
  .faq-answer { padding: 4px 20px 16px; }

  /* Game preview */
  .game-preview-layout { grid-template-columns: 1fr; gap: 36px; }
  .game-preview-copy h2 { text-align: center; }
  .section-sub-left { text-align: center; }
  .moment-item { gap: 10px; }

  /* Team */
  .team-cards { grid-template-columns: 1fr; }

  /* Mid-page CTA */
  .midpage-cta { padding: 24px 16px; }

  /* Sharing block */
  .sharing-block { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 860px) and (min-width: 681px) {
  .team-cards { grid-template-columns: 1fr 1fr; }
  .team-cards .team-card:last-child { grid-column: span 2; }
  .game-preview-layout { gap: 32px; }
}
