/* === Design tokens (z ShadowBoard) === */
:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e8c870;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --nav-h: 64px;
  --max-w: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === Base === */
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 { font-size: 32px; font-weight: 600; line-height: 1.2; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }

.accent-gold { color: var(--gold); }
.italic { font-style: italic; }
.bold { font-weight: 600; }

/* === CTA button === */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: background 200ms ease;
  cursor: pointer;
  border: none;
}
.btn-cta:hover { background: var(--gold-light); }
.btn-cta:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.btn-cta:active { background: var(--gold); transform: translateY(1px); }

/* === Top nav === */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 10px;
}
.brand-text { color: var(--text); }

.topnav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topnav-links a {
  color: var(--text-muted);
  font-size: 15px;
  transition: color 150ms ease;
}
.topnav-links a:hover { color: var(--gold); }

/* === Hero === */
.hero { padding: 80px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 32px; }
.hero-sub { font-size: 18px; color: var(--text); margin-bottom: 24px; }
.hero .btn-cta { margin-top: 16px; }
.hero-scroll-hint {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  max-width: 480px;
  margin-left: auto;
}
.hero-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(1) contrast(1.05);
}


/* === Social proof === */
.social-proof {
  background: var(--bg2);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 24px 0;
}
.social-proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social-proof-label {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.social-proof-list {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  transition: color 150ms ease;
}
.social-proof-list:hover { color: var(--text); }
.social-proof-list .sep { color: var(--text-dim); margin: 0 4px; }

/* === Produkty === */
.produkty { padding: 96px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}
.produkty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.kafelek {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 200ms ease, transform 200ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kafelek:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.kafelek-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}
.kafelek-tag {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
}
.kafelek-copy {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}
.kafelek-cta {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  align-self: flex-start;
  transition: color 150ms ease;
}
.kafelek-cta:hover { color: var(--gold-light); }
.kafelek-wide { grid-column: 1 / -1; }
.kafelek-soon {
  background: var(--bg2);
  border-style: dashed;
}
.kafelek-soon .kafelek-title { color: var(--text-muted); }
.section-lede {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: -24px auto 56px;
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 24px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color 150ms ease; }
.breadcrumb a:hover { color: var(--gold); }

/* === Lead magnet sales page === */
.lead-magnet-hero {
  padding: 56px 0 80px;
}
.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.lead-magnet-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.lead-magnet-copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
}
.lead-magnet-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.lead-magnet-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-magnet-bullets li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}

.lead-magnet-form-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.lead-magnet-form-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}
.lead-magnet-form-sub {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-magnet-form input[type="email"] {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 150ms ease;
}
.lead-magnet-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}
.btn-cta-block {
  width: 100%;
  justify-content: center;
}
.lead-magnet-fallback-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
  margin-top: 8px;
  font-style: italic;
}

/* === Thank you / confirmation page === */
.thankyou-hero {
  padding: 64px 0 80px;
  text-align: center;
}
.thankyou-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 32px;
}
.thankyou-title {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 20px;
}
.thankyou-lede {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 56px;
}

.thankyou-checklist {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 56px;
  text-align: left;
}
.thankyou-checklist h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.thankyou-checklist code {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  font-size: 13px;
  color: var(--gold);
}
.thankyou-checklist a { color: var(--gold); text-decoration: underline; }
.thankyou-checklist a:hover { color: var(--gold-light); }

.thankyou-fallback {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.thankyou-fallback a { color: var(--gold); text-decoration: underline; }
.thankyou-fallback a:hover { color: var(--gold-light); }

.thankyou-meanwhile {
  text-align: left;
  margin-bottom: 56px;
}
.thankyou-meanwhile h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.thankyou-meanwhile > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.thankyou-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.thankyou-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thankyou-card h3 { font-size: 18px; color: var(--text); }
.thankyou-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}
.thankyou-card .kafelek-cta { font-size: 14px; }

.thankyou-signature {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 16px;
  margin-top: 32px;
}

@media (max-width: 700px) {
  .thankyou-cards { grid-template-columns: 1fr; }
}

/* === MailerLite Embed Form override (dark theme) === */
.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
}
.ml-form-embedContainer .ml-form-align-center { text-align: left !important; }
.ml-form-embedContainer .ml-form-embedBody,
.ml-form-embedContainer .ml-form-successBody {
  padding: 0 !important;
}
.ml-form-embedContainer .ml-form-embedContent {
  display: none !important;
}
.ml-form-embedContainer .ml-form-fieldRow input {
  background-color: var(--bg) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
  border-radius: var(--radius) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  padding: 12px 16px !important;
}
.ml-form-embedContainer .ml-form-fieldRow input:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}
.ml-form-embedContainer .ml-form-fieldRow input::placeholder,
.ml-form-embedContainer .ml-form-fieldRow input::-webkit-input-placeholder { color: var(--text-dim) !important; }
.ml-form-embedContainer .ml-form-embedSubmit { margin: 8px 0 0 0 !important; }
.ml-form-embedContainer .ml-form-embedSubmit button.primary {
  background-color: var(--gold) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  transition: background 200ms ease !important;
}
.ml-form-embedContainer .ml-form-embedSubmit button.primary:hover {
  background-color: var(--gold-light) !important;
}
.ml-form-embedContainer .ml-form-successContent h4 {
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin: 0 0 12px 0 !important;
  text-align: left !important;
}
.ml-form-embedContainer .ml-form-successContent p {
  color: var(--text-muted) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  text-align: left !important;
}
.lead-magnet-form-foot {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}
.link-skip {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--text-dim);
  transition: color 150ms ease;
}
.link-skip:hover { color: var(--gold); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === Lead magnet context cards === */
.lead-magnet-context {
  padding: 64px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lead-magnet-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lm-card h3 {
  margin-bottom: 16px;
  color: var(--text);
}
.lm-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.lead-magnet-cta-bottom {
  padding: 80px 0;
  text-align: center;
}
.lead-magnet-cta-inner h2 { margin-bottom: 16px; }
.lead-magnet-cta-inner p { color: var(--text-muted); margin-bottom: 32px; font-size: 17px; }

@media (max-width: 900px) {
  .lead-magnet-grid {
    grid-template-columns: 1fr;
  }
  .lead-magnet-form-box {
    position: static;
  }
  .lead-magnet-context-grid {
    grid-template-columns: 1fr;
  }
}

/* === Prompt article (lead magnet full page) === */
.container-narrow {
  max-width: 820px;
}
.prompt-article { padding: 32px 0 80px; }
.breadcrumb-sep { margin: 0 6px; color: var(--text-dim); }

.prompt-header { margin-bottom: 48px; }
.prompt-header h1 { margin: 12px 0 16px; }
.prompt-tagline {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

.prompt-howto {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.prompt-howto h2 { font-size: 22px; margin-bottom: 20px; }
.prompt-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding-left: 0;
}
.prompt-steps li {
  position: relative;
  padding-left: 44px;
  min-height: 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

.prompt-box-wrap { margin-bottom: 56px; }
.prompt-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.prompt-box-header h2 { font-size: 22px; }
.prompt-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-family: 'SF Mono', Menlo, Monaco, 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  overflow-x: auto;
  white-space: pre;
  max-height: 540px;
  overflow-y: auto;
}
.prompt-box code {
  font-family: inherit;
  display: block;
}
#copy-btn.copied { background: #2d8a4f; color: #fff; }

.prompt-example { margin-bottom: 56px; }
.prompt-example h2 { font-size: 22px; margin-bottom: 20px; }
.example-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.example-line { color: var(--text); margin-bottom: 12px; line-height: 1.5; }
.example-output {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.example-output ul { padding-left: 0; }
.example-output > ul > li { margin-bottom: 12px; color: var(--text); line-height: 1.5; }
.example-output ol { padding-left: 24px; margin-top: 8px; }
.example-output ol li { list-style: decimal; color: var(--text-muted); line-height: 1.5; margin-bottom: 4px; }

.prompt-next { margin-bottom: 32px; }
.prompt-next h2 { font-size: 26px; margin-bottom: 16px; }
.prompt-next-lede {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.next-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.next-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.next-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--text); }
.next-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; font-size: 15px; }
.next-card-note {
  font-size: 13px !important;
  color: var(--text-dim) !important;
  font-style: italic;
}
.next-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mail-checklist {
  padding-left: 22px;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mail-checklist li {
  list-style: decimal;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
  padding-left: 4px;
}
.mail-checklist li::marker { color: var(--gold); font-weight: 700; }
.mail-checklist strong { color: var(--text); }
.btn-cta-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-cta-secondary:hover { background: var(--gold); color: #000; }

.prompt-side-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prompt-side-note p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.prompt-side-note a { color: var(--gold); text-decoration: underline; }
.prompt-side-note a:hover { color: var(--gold-light); }

.prompt-credits {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.text-dim { color: var(--text-dim); }
.prompt-credits a { color: var(--text-muted); text-decoration: underline; }
.prompt-credits a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .prompt-box { font-size: 11px; padding: 18px 16px; }
  .prompt-howto, .example-card, .next-card { padding: 20px; }
}

/* === Nav dropdown (cloned from ShadowBoard pattern) === */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius);
  transition: color 150ms ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--gold);
}
.nav-dropdown-toggle .chev {
  font-size: 10px;
  transition: transform 200ms ease;
}
.nav-dropdown.open .nav-dropdown-toggle .chev {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 200ms ease;
}
.nav-dropdown-menu a:hover {
  background: var(--bg3);
}
.nav-dropdown-menu a strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.nav-dropdown-menu a:hover strong {
  color: var(--gold);
}
.nav-dropdown-menu a span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* === Manifest === */
.manifest {
  background: var(--bg2);
  padding: 96px 24px;
}
.manifest-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.manifest-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text);
}
.manifest-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.manifest-sign {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}
.manifest-deco {
  margin-top: 48px;
  opacity: 0.3;
  filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(617%) hue-rotate(11deg) brightness(94%) contrast(91%);
}

/* === Footer === */
.footer {
  background: var(--bg2);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-col h4.footer-h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list a {
  color: var(--text-muted);
  font-size: 15px;
  transition: color 150ms ease;
}
.footer-list a:hover { color: var(--gold); }

.footer-brand .brand-logo-big { width: 64px; height: 64px; padding: 12px; margin-bottom: 16px; }
.footer-brand-name { font-weight: 600; color: var(--text); margin-bottom: 4px; }
.footer-brand-owner { color: var(--text-muted); font-size: 14px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 12px; }

/* === Mobile (hamburger + stacked layouts) === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 6px 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: background 150ms ease;
}

@media (max-width: 768px) {
  .topnav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .topnav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .topnav .btn-cta { padding: 8px 16px; font-size: 13px; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .produkty-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand .brand-logo-big { margin-left: auto; margin-right: auto; }
  .social-proof-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 48px 0; }
  .produkty, .manifest { padding: 64px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
}
