/* Sosnowiec: November, gloomy, brutalist, harsh, unforgiving */

:root {
  --bg-0: #111;       /* near-black */
  --bg-1: #222;       /* dark gray */
  --bg-2: #1a1a1a;    /* concrete */
  --fg-0: #fff;       /* white text */
  --fg-1: #bbb;       /* muted gray */
  --line: #000;       /* black divider */
  --shadow: none;
  --b: 3px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  background: #111;
  color: #fff;
  font-family: 'IBM Plex Mono', 'Menlo', 'Consolas', 'Liberation Mono', monospace;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.page-container { max-width: 1120px; margin: 0 auto; padding: 20px; }

/* Section shells: no rounding, visible grid, brutal */
.hero-section,
.problem-section,
.solution-section,
.comparison-section,
.pricing-section,
.testimonials-section,
.schedule-section,
.application-section,
.faq-section,
.footer-section {
  background: #1a1a1a;
  border: var(--b) solid #000;
  margin: 32px 0;
  padding: 36px 20px;
  border-radius: 0;
  box-shadow: none;
}

/* Hero */
.hero-section { position: relative; overflow: hidden; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  border-left: var(--b) solid #fff;
  padding-left: 18px;
  letter-spacing: 2px;
}
.hero-subtitle {
  color: #bbb;
  font-size: clamp(16px, 2.3vw, 22px);
  font-style: normal;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-description { max-width: 60ch; color: #bbb; margin-top: 14px; font-size: 1.1em; }


.cta-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.cta-button {
  display: inline-block;
  min-width: 160px;
  height: 44px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: var(--b) solid #fff;
  color: #fff;
  background: #111;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.cta-button:hover {
  background: #fff;
  color: #111;
}
.cta-primary { border-color: #fff; color: #fff; background: #111; }
.cta-primary:hover { background: #fff; color: #111; }
.cta-secondary { border-color: #fff; color: #fff; background: #222; }
.cta-secondary:hover { background: #fff; color: #111; }

.section-title { font-size: 22px; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 18px; font-weight: 900; }

.problem-section { border-left: var(--b) solid #fff; }
.solution-section { border-left: var(--b) solid #fff; }
.pricing-section { border-left: var(--b) solid #fff; }

.problem-list, .pricing-features { list-style: none; padding: 0; }
.problem-item, .pricing-feature { border-top: 1px solid #fff; padding: 12px 0; }
.problem-item::before { content: "■"; color: #fff; margin-right: 10px; font-size: 1.2em; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 10px; }
.feature-card { border: var(--b) solid #fff; background: #222; padding: 14px; border-radius: 0; }
.feature-title { color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.feature-description { color: #bbb; font-size: 1em; }

.comparison-table { width: 100%; border-collapse: collapse; border: var(--b) solid #fff; }
.comparison-table th, .comparison-table td { border: 1px solid #fff; padding: 12px; color: #fff; background: #222; }
.comparison-table th { text-transform: uppercase; letter-spacing: 1px; font-weight: 900; background: #111; }
.comparison-table tr:hover { background: #1a1a1a; }

.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.pricing-card { border: var(--b) solid #fff; background: #222; padding: 18px; text-align: left; border-radius: 0; }
.pricing-card.featured { outline: var(--b) solid #fff; }
.pricing-title { color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-size: 32px; font-weight: 900; color: #fff; }

.testimonial-card { background: #222; border-left: var(--b) solid #fff; border-radius: 0; }
.testimonial-quote { color: #bbb; font-size: 1em; }
.testimonial-author { color: #fff; font-weight: 900; }

/* SVG utilitarian illustration */
.sosnowiec-illustration { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sosnowiec-illustration svg { width: 100%; height: 100%; display: block; mix-blend-mode: normal; opacity: 0.18; }

/* Schedule, Application, FAQ, Footer inherit the shell styles above */

/* Tiny utilities */
.mono { font-family: inherit; }
.muted { color: #bbb; }
.rule { border-top: 1px solid #fff; margin: 16px 0; }
