/* Grass Roots Lobbing Sp. z o.o. — Corporate apex theme
   Świadoma decyzja: ciemne tło + zieleń jako akcent + biel/szarość treści.
   Bardziej "biznesowy" niż portale techniczne (gok/unionai). */

:root {
  --bg: #0a0e0a;
  --bg-2: #0e1410;
  --panel: #111a13;
  --panel-2: #16211a;
  --text: #e8edea;
  --text-dim: #a3b1a8;
  --text-mute: #6a7a70;
  --accent: #39ff14;
  --accent-soft: #4cc04a;
  --accent-dim: #1f8a0c;
  --cyan: #66d9ef;
  --border: #1d2a22;
  --border-bright: #2d4538;
  --mono: 'JetBrains Mono', 'Courier New', Consolas, monospace;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color .15s, color .15s;
}
a:hover { border-bottom-color: var(--cyan); color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

h1, h2, h3, h4 {
  font-family: var(--mono);
  color: var(--text);
  margin-top: 1.4em;
  letter-spacing: -0.01em;
  font-weight: 600;
}
h1 { font-size: 36px; line-height: 1.2; color: var(--accent); }
h2 { font-size: 26px; padding-bottom: 10px; border-bottom: 1px solid var(--border-bright); }
h3 { font-size: 19px; color: var(--cyan); }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); }

p { margin: 0 0 1em; color: var(--text-dim); }
strong { color: var(--text); }

/* HEADER */
.site-header {
  background: rgba(14,20,16,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-bright);
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark svg { display: block; flex-shrink: 0; }
.brand-mark .name {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text);
  line-height: 1.2;
}
.brand-mark .name strong { color: var(--accent); display: block; font-size: 13px; }
.brand-mark .name small { color: var(--text-mute); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

.site-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: var(--text);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 12px;
  background: var(--panel);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--bg);
}
.site-nav a.active {
  color: var(--accent);
  border-color: var(--accent);
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 28px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,255,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,255,20,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 18px;
  max-width: 880px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero .tagline {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* CONTAINER */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px;
}
.section {
  padding: 72px 28px;
  border-bottom: 1px solid var(--border);
}
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all .15s;
  border-radius: 2px;
  font-weight: 600;
}
.btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-bottom-color: var(--accent);
}
.btn-secondary {
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: transparent;
}

/* INITIATIVES GRID */
.initiatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.initiative {
  background: var(--panel);
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  padding: 28px;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.initiative:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.initiative h3 {
  margin-top: 0;
  font-size: 22px;
  color: var(--accent);
}
.initiative .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.initiative p {
  font-size: 14px;
  margin-bottom: 18px;
}
.initiative a.go {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VALUES GRID */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.value {
  padding: 24px 20px;
  border-left: 3px solid var(--accent);
  background: var(--panel);
}
.value h4 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
}
.value p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
}

/* SIGNATORIES */
.signatories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.signatory {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.signatory .role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.signatory .name {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}
.signatory .desc {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 6px;
}

/* NEWS */
.news-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.news-item {
  padding: 18px 0;
  border-bottom: 1px dashed var(--border-bright);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.news-item .date {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 13px;
  min-width: 110px;
}
.news-item .title {
  color: var(--text);
  font-weight: 600;
  flex: 1;
  min-width: 240px;
}
.news-item .body {
  color: var(--text-dim);
  font-size: 14px;
  width: 100%;
  margin-top: 6px;
}

/* PANEL */
.panel {
  background: var(--panel);
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  padding: 24px 28px;
  margin: 24px 0;
  position: relative;
}
.panel::before {
  content: "[ " attr(data-label) " ]";
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--bg);
  color: var(--accent);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
}

/* TABLE / CONTACT-LIST */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.contact-list li {
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.contact-list .label {
  display: block;
  color: var(--text-mute);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-list a { color: var(--accent); }

/* OFFER LIST */
.offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.offer-item {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 2px;
}
.offer-item h3 { margin-top: 0; color: var(--accent); font-size: 17px; }
.offer-item p { font-size: 14px; margin: 0; }

.ascii-divider {
  color: var(--border-bright);
  text-align: center;
  margin: 36px 0;
  font-family: var(--mono);
  font-size: 12px;
  user-select: none;
}

/* FOOTER */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-bright);
  padding: 48px 28px 24px;
  color: var(--text-dim);
  font-size: 13px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.footer-inner h4 {
  color: var(--accent);
  font-size: 12px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--mono);
}
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner li { margin-bottom: 6px; }
.footer-inner a { color: var(--text-dim); }
.footer-inner a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px dashed var(--border-bright);
  text-align: center;
  color: var(--text-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
}

@media (max-width: 720px) {
  .hero { padding: 56px 22px 48px; }
  .hero h1 { font-size: 32px; }
  .hero .tagline { font-size: 17px; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 56px 22px; }
}
