:root {
  --bg: #07090f;
  --text: #eef2ff;
  --muted: #b9c3e3;
  --line: #2c3a66;
  --accent: #ffd166;
  --card: rgba(19, 28, 48, 0.72);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #0c1020 0%, #07090f 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.imp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(8, 14, 30, 0.72);
  border-bottom: 1px solid var(--line);
}

.imp-nav__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.imp-nav__brand img {
  width: 80px;
  height: auto;
  display: block;
}

.imp-nav__links {
  display: flex;
  gap: 16px;
}

.imp-nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.imp-nav__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.imp-main {
  padding: 48px 0 72px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.imp-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.imp-header__eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.imp-header__title {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.01em;
}

.imp-section {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.imp-section:last-child {
  border-bottom: none;
}

.imp-section h2 {
  margin: 0 0 6px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--text);
}

.imp-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.imp-block {
  margin-bottom: 24px;
}

.imp-block h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.imp-block p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
}

.imp-block p:last-child {
  margin-bottom: 0;
}

.imp-block--muted {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.imp-block--muted p {
  font-size: 13px;
}

.imp-dl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.imp-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 14, 24, 0.8);
}

.imp-footer__inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.imp-footer__inner a {
  color: var(--text);
}

.imp-footer__inner a:hover {
  color: var(--accent);
  text-decoration: none;
}

.imp-footer__inner span {
  opacity: 0.4;
}

.imp-footer__logo {
  width: 72px;
  height: auto;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .imp-nav__links {
    display: none;
  }
}

