:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --surface: #111415;
  --surface-soft: #171b1d;
  --border: #1f2526;
  --text: #f2f5f7;
  --muted: #a7b0b5;
  --brand: #00a85d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: radial-gradient(1200px 700px at 90% -10%, rgba(0, 168, 93, 0.16), transparent),
    radial-gradient(900px 600px at -10% 90%, rgba(24, 89, 214, 0.12), transparent), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
  color: var(--brand);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 14, 0.92);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.brand-badge {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(160deg, #00bd69, #008f4f);
  color: #041e12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: 160ms ease-in-out;
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
  background: linear-gradient(160deg, #00b261, #009452);
  border-color: transparent;
  color: #051f13;
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(160deg, #00c66d, #00a35b);
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 70px;
}

.eyebrow {
  display: inline-flex;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand);
  background: rgba(0, 168, 93, 0.12);
  border: 1px solid rgba(0, 168, 93, 0.24);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #d8dee2;
  margin-bottom: 14px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(17, 20, 21, 0.98), rgba(12, 14, 15, 0.95));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

h2 {
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.28;
  margin: 30px 0 12px;
}

p {
  line-height: 1.78;
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 1rem;
}

.quick-nav {
  margin: 16px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-nav a {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dbe2e6;
  font-size: 0.9rem;
}

.quick-nav a:hover {
  border-color: rgba(0, 168, 93, 0.4);
  color: #fff;
}

.faq {
  margin-top: 34px;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-soft);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #e8edef;
}

.faq p {
  margin-top: 8px;
}

.cta-block {
  margin-top: 30px;
  border: 1px solid rgba(0, 168, 93, 0.3);
  border-radius: 16px;
  padding: 22px;
  background: linear-gradient(160deg, rgba(0, 168, 93, 0.14), rgba(0, 168, 93, 0.02));
}

.cta-block h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cluster {
  margin-top: 34px;
}

.cluster ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.cluster a {
  display: inline-flex;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #dbe2e6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.cluster a:hover {
  border-color: rgba(0, 168, 93, 0.45);
  color: #fff;
}

.muted {
  color: #8f9ba2;
  font-size: 0.9rem;
}

@media (max-width: 840px) {
  .top-actions .btn:first-child {
    display: none;
  }
  .panel {
    padding: 20px;
  }
}
