:root {
  --bg: #06060e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --text: #edeae3;
  --text-2: rgba(237, 234, 227, 0.7);
  --text-3: rgba(237, 234, 227, 0.5);
  --gold: #c9a84c;
  --teal: #10b981;
  --teal-soft: rgba(16, 185, 129, 0.12);
  --gold-soft: rgba(201, 168, 76, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.geo {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg 60deg,
    rgba(201, 168, 76, 0.5) 60deg 61deg,
    transparent 61deg 120deg
  );
  background-size: 120px 120px;
}

.amb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.amb-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
}

.amb-2 {
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
}

.top-bar {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.top-in {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-logo {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
}

.top-nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 600;
}

.top-nav a:hover {
  color: var(--gold);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  padding: 2rem 0 2.3rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.hero p {
  color: var(--text-2);
  max-width: 680px;
  line-height: 1.7;
}

.search-box {
  margin-top: 1.4rem;
}

.search-box input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.search-box input:focus {
  border-color: rgba(16, 185, 129, 0.4);
}

.chip-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.76rem;
  color: var(--text-2);
  background: var(--surface);
}

.sec-head {
  margin-top: 1.7rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.sec-head h2 {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sec-head p {
  color: var(--text-3);
  font-size: 0.84rem;
}

.grid {
  display: grid;
  gap: 0.85rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 0.98rem;
  font-weight: 750;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.card p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.55;
}

.kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.kicker-gold {
  background: var(--gold-soft);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.kicker-teal {
  background: var(--teal-soft);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--teal);
}

.note {
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.07);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
}

.note p {
  color: var(--text-2);
  line-height: 1.65;
  font-size: 0.9rem;
}

.actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a8862e);
  color: #06060e;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.article {
  max-width: 900px;
}

.article-meta {
  font-size: 0.84rem;
  color: var(--text-3);
  margin-top: 0.35rem;
}

.panel {
  margin-top: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
}

.panel h2 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.panel h3 {
  font-size: 0.9rem;
  margin-top: 0.8rem;
  margin-bottom: 0.35rem;
  color: var(--teal);
}

.panel p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 0.9rem;
}

.panel ul,
.panel ol {
  margin: 0.45rem 0 0.25rem 1.1rem;
}

.panel li {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.breadcrumbs {
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--text-3);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.article-list {
  list-style: none;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-list li + li {
  border-top: 1px solid var(--border);
}

.article-list a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  padding: 0.95rem 1rem;
}

.article-list a:hover {
  background: var(--surface-strong);
}

.article-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.article-list span {
  color: var(--text-2);
  font-size: 0.84rem;
  line-height: 1.55;
}

.ft {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.5rem 2rem;
}

.ft-in {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
