:root {
  --bg: #0f1115;
  --bg-alt: #171a20;
  --card: #1f232b;
  --border-subtle: #2b313c;
  --text-main: #e4e7ee;
  --text-muted: #9aa0b2;
  --accent: #7fb3ff;
  --accent-soft: #27344a;
  --button-bg: #7fb3ff;
  --button-text: #0b0d11;
  --danger: #ff6b6b;
  --focus: #f5f0c8;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #181c24 0, #05060a 55%);
  color: var(--text-main);
  font-family: var(--font-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(to right, #0b0d11, #11141b);
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 52px;
  height: 52px;
}

.site-header h1 {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tagline {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.main-nav a.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.main-nav a:hover {
  background: rgba(127, 179, 255, 0.08);
}

.content {
  flex: 1;
  max-width: 900px;
  margin: 1.75rem auto 2.5rem;
  padding: 0 1.5rem;
}

.hero {
  background: radial-gradient(circle at top left, #222838, #151822);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.hero p {
  color: var(--text-muted);
  line-height: 1.6;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
}

.button:hover {
  filter: brightness(1.05);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.pillar {
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.1rem;
}

.pillar h3 {
  margin-top: 0;
  font-size: 1rem;
}

.pillar p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.structure-list {
  list-style: none;
  padding-left: 0;
}

.structure-list li {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.structure-list li:last-child {
  border-bottom: none;
}

.note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vacancy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.vacancy {
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.1rem;
}

.vacancy h3 {
  margin-top: 0;
}

.vacancy p {
  margin-bottom: 0.4rem;
}

.vacancy-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-section {
  margin-top: 1rem;
}

.contact-form {
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.2rem;
  max-width: 520px;
}

.contact-form label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  border: 1px solid #343a46;
  background: #0f1116;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--focus);
  border-color: var(--focus);
}

.contact-form button {
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #05060a;
  padding: 1rem 1.5rem 1.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer .meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .content {
    padding: 0 1rem;
  }
}01:23 28/05/2026