:root {
  --bg: #f4f4f4;
  --panel: #ffffff;
  --panel-2: #f8f8f8;
  --ink: #0d0d0d;
  --muted: #5f5f5f;
  --line: #d7d7d7;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -20%, #ffffff 0%, transparent 40%),
    radial-gradient(circle at 90% 0%, #ececec 0%, transparent 38%),
    var(--bg);
  line-height: 1.65;
}

.wrap {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #000;
  box-shadow: var(--shadow);
}

.brand h1 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  background: #fff;
  transition: all 0.18s ease;
}

.nav a:hover,
.nav a.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.hero {
  padding: 48px 0 30px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(140deg, #ffffff 0%, #f6f6f6 48%, #ececec 100%);
  box-shadow: var(--shadow);
  padding: 30px;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  font-weight: 700;
}

h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.lead {
  margin: 0;
  color: #343434;
  max-width: 70ch;
}

.actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #000;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #161616;
}

.btn-secondary {
  background: #fff;
  color: #000;
}

.content {
  padding: 6px 0 52px;
  display: grid;
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: #333;
}

.policy {
  display: grid;
  gap: 16px;
}

.policy-section h4 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.policy-section p,
.policy-section li {
  color: #2f2f2f;
}

.policy-section ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -4px;
}

.inline-link {
  color: #000;
  text-underline-offset: 2px;
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .topbar-inner {
    padding: 12px 0;
    min-height: unset;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-panel {
    padding: 22px;
  }

  .card {
    padding: 18px;
  }
}
