:root {
  --bg: #071019;
  --bg-soft: #0c1620;
  --panel: #101d29;
  --panel-strong: #16283a;
  --text: #ffffff;
  --muted: #c7d3da;
  --line: #2b3d4a;
  --green: #2fae66;
  --green-dark: #1c7a47;
  --blue: #2f8fe0;
  --blue-dark: #1c5f9e;
  --white: #ffffff;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }

.construction-banner {
  margin: 0;
  padding: 10px 16px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(7, 16, 25, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark-frame {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark {
  width: 112%;
  height: 112%;
  object-fit: cover;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}
.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--white);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 44px);
  text-align: center;
}
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 20px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-logo { display: flex; justify-content: center; margin-top: clamp(40px, 6vw, 64px); }
.hero-logo-frame {
  width: min(320px, 80vw);
  height: min(320px, 80vw);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(47, 142, 224, 0.35)) drop-shadow(0 10px 30px rgba(47, 174, 102, 0.3));
}
.hero-logo-frame img {
  width: 112%;
  height: 112%;
  object-fit: cover;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-secondary { background: var(--panel-strong); color: var(--white); border: 1px solid var(--line); }

.content-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 44px);
}
.section-heading { margin-bottom: 32px; }
.section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 4px 0 0; }

.content-section > h3 { color: var(--blue); margin: 32px 0 8px; }
.content-section > h3:first-of-type { margin-top: 0; }
.content-section > p, .content-section > ul { color: var(--muted); margin: 0 0 8px; }
.content-section > ul { padding-left: 20px; }
.content-section > ul li { margin-bottom: 4px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.card h3 { margin-top: 0; color: var(--blue); }
.card p { color: var(--muted); margin-bottom: 0; }
.card p + p { margin-top: 12px; }

.step-list { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
}
.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin: 0 0 6px; color: var(--blue); font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); }

.tag-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list li {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) {
  .split-layout { grid-template-columns: 1fr; }
}

.fact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fact-list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.fact-list span { color: var(--muted); }
.fact-list strong { color: var(--white); }

.cv-section + .cv-section { margin-top: 40px; }
.cv-section h3 { color: var(--blue); margin-bottom: 12px; }
.cv-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.cv-table { width: 100%; border-collapse: collapse; background: var(--panel); }
.cv-table th, .cv-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cv-table tr:last-child td { border-bottom: none; }
.cv-table th {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cv-table td:first-child, .cv-table th:first-child {
  width: 190px;
  white-space: nowrap;
  color: var(--muted);
}

.placeholder-note {
  color: var(--muted);
  font-style: italic;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 4vw, 44px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer div { display: flex; gap: 16px; }
.site-footer a { text-decoration: none; color: var(--muted); }
.site-footer a:hover { color: var(--white); }
