:root {
  --primary: #fea735;
  --primary-dark: #df8614;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --panel: #ffffff;
  --soft: #fff7ed;
  --page: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--primary-dark);
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 19px;
  font-weight: 850;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: #111827;
  font-size: 13px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.active {
  color: var(--ink);
}

.hero {
  padding: 72px 0 24px;
  text-align: center;
}

.badge {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 18px auto 10px;
  max-width: 860px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.content {
  max-width: 900px;
  margin: 34px auto 72px;
  padding: 44px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.content h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul,
.content ol {
  padding-left: 24px;
}

.action-panel,
.contact-grid article {
  background: var(--soft);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #111827;
  text-decoration: none;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #0f172a;
  color: #cbd5e1;
  padding: 34px 0;
}

.footer a {
  color: #fbbf24;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .content {
    padding: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
