@import url("https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg-0: #06090f;
  --text: #f4efe7;
  --text-muted: #b7c1d3;
  --container: 1020px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(130% 90% at 10% 0%, #19253d 0%, var(--bg-0) 45%, #05070b 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(4, 8, 14, 0.78), rgba(4, 8, 14, 0.3));
  border-bottom: 1px solid rgba(255, 191, 114, 0.12);
}

.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;
  text-decoration: none;
  color: var(--text);
  font-family: "Syne", sans-serif;
  letter-spacing: 0.03em;
  font-size: 13px;
  text-transform: none;
  white-space: nowrap;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe4bf, #ff8f46 68%, #a43f17 100%);
  box-shadow: 0 0 16px rgba(255, 168, 89, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: rgba(234, 240, 251, 0.88);
  font-size: 14px;
}

.hero {
  padding: clamp(42px, 8vh, 82px) 0 26px;
}

.hero .kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 140, 0.22);
  color: #ffe0b7;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(255, 202, 142, 0.08);
}

h1 {
  margin: 14px 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5.3vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero p {
  margin: 14px 0 0;
  max-width: 66ch;
  color: var(--text-muted);
  line-height: 1.64;
  font-size: clamp(15px, 1.5vw, 18px);
}

.hero-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 200, 130, 0.2);
  margin-top: 22px;
}

.hero-image {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.content {
  padding: 18px 0 70px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.panel {
  border-radius: 16px;
  border: 1px solid rgba(255, 200, 130, 0.18);
  background: linear-gradient(165deg, rgba(14, 22, 37, 0.86), rgba(9, 15, 27, 0.9));
  padding: 16px;
}

.panel h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.panel p {
  margin: 10px 0 0;
  color: #c2cee1;
  line-height: 1.62;
  font-size: 14px;
}

.panel ul {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: #d6e0ef;
}

.panel li {
  margin: 6px 0 0;
  line-height: 1.55;
  font-size: 14px;
}

.tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(255, 204, 140, 0.2);
  color: #dfebf8;
  background: rgba(255, 202, 142, 0.06);
}

.back {
  margin-top: 18px;
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  color: #24170d;
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(120deg, #ffd19b, #ffa24d);
}

footer {
  padding: 18px 0 32px;
  color: rgba(186, 197, 214, 0.74);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    gap: 14px;
    width: 100%;
  }

  .container {
    width: min(var(--container), calc(100% - 26px));
  }
}
