/* Strony statyczne (marketing/SEO) — celowo poza aplikacją React.
   Serwowane bezpośrednio przez nginx, więc crawler dostaje pełną treść w initial HTML. */
:root {
  --background: #000000;
  --foreground: #ffffff;
  --card: #0a0a0a;
  --primary: #5b21b6;
  --muted-foreground: #a3a3a3;
  --border-subtle: #262626;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgba(91, 33, 182, 0.10) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 32px 20px 80px; }

header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
header.site img { width: 36px; height: 36px; border-radius: 9px; }
header.site a { color: var(--foreground); text-decoration: none; font-weight: 700; font-size: 20px; }

h1, h2, h3 { font-family: Outfit, Inter, sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: 40px; margin: 0 0 16px; }
h2 { font-size: 26px; margin: 48px 0 12px; }
h3 { font-size: 19px; margin: 32px 0 8px; font-weight: 600; }

.lead { font-size: 19px; color: var(--muted-foreground); margin-bottom: 40px; }
p { margin: 0 0 16px; }
a { color: var(--foreground); }

ol.steps { list-style: none; counter-reset: s; padding: 0; }
ol.steps li { counter-increment: s; position: relative; padding-left: 52px; margin-bottom: 28px; }
ol.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}

.cards { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin: 24px 0; }
.card {
  background: var(--card); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 20px; text-align: center;
}
.card.popular { border-color: var(--primary); }
.card .credits { font-family: Outfit, Inter, sans-serif; font-size: 30px; font-weight: 800; }
.card .label { color: var(--muted-foreground); font-size: 13px; }
.card .price { margin-top: 10px; font-size: 17px; font-weight: 600; }
.card .tag { display: inline-block; margin-top: 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--primary); font-weight: 700; }

.shops { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 32px; padding: 0; list-style: none; }
.shops li {
  background: var(--card); border: 1px solid var(--border-subtle);
  border-radius: 999px; padding: 6px 14px; font-size: 14px; color: var(--muted-foreground);
}

.faq { border-top: 1px solid var(--border-subtle); padding-top: 24px; }
.faq h3 { margin-top: 24px; }

.cta {
  display: inline-block; margin: 32px 0 8px; padding: 15px 32px;
  background: var(--foreground); color: var(--background);
  border-radius: 999px; text-decoration: none; font-weight: 700;
}

nav.foot { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border-subtle);
  display: flex; flex-wrap: wrap; gap: 20px; font-size: 15px; }
nav.foot a { color: var(--muted-foreground); text-decoration: none; }
nav.foot a:hover { color: var(--foreground); }

@media (max-width: 520px) { h1 { font-size: 31px; } .lead { font-size: 17px; } }
