/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, #1a1208 0%, #080808 70%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--safe-t) + 20px) 20px 20px;
  margin-top: calc(-1 * var(--safe-t));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,169,110,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 100%);
  pointer-events: none;
}
.hero-ant {
  position: absolute;
  top: calc(var(--safe-t) + 16px); right: 20px;
  font-size: 72px;
  opacity: 0.15;
  filter: sepia(1);
  transform: rotate(15deg);
  z-index: 1;
}
.hero-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.hero-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 11vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  position: relative;
  z-index: 1;
}
.hero-name em { font-style: italic; color: var(--accent); }

/* ─── NEWS CARD ─── */
.news-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}
.news-date { font-size: 11px; color: var(--text3); letter-spacing: 0.05em; margin-bottom: 6px; }
.news-title { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 6px; }
.news-text { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ─── SOCIAL PREVIEW ─── */
.social-preview {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-preview-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 2px;
  font-weight: 600;
}
.social-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  background: var(--bg4);
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}
.social-post:active { border-color: rgba(200,169,110,0.3); }
.social-post-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: var(--bg3);
}
.social-post-icon.twitter   { background: rgba(29,161,242,0.12);  }
.social-post-icon.threads   { background: rgba(255,255,255,0.06); }
.social-post-icon.telegram  { background: rgba(38,166,209,0.12);  }
.social-post-icon.vk        { background: rgba(66,116,182,0.12);  }
.social-post-icon.instagram { background: rgba(225,48,108,0.12);  }
.social-post-body { flex: 1; min-width: 0; }
.social-post-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.social-post-username { font-size: 11px; font-weight: 600; color: var(--text2); }
.social-post-date { font-size: 10px; color: var(--text3); }
.social-post-text { font-size: 13px; color: var(--text); line-height: 1.55; }
.social-post-arrow { font-size: 12px; color: var(--text3); flex-shrink: 0; align-self: center; }

/* ─── HINT CARD ─── */
.hint-card {
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.hint-icon { font-size: 20px; flex-shrink: 0; }
.hint-text { font-size: 14px; color: var(--text2); line-height: 1.5; flex: 1; }
.hint-arrow { color: var(--accent); flex-shrink: 0; font-size: 16px; }

/* ─── MILESTONE ─── */
.milestone-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.milestone-item:last-child { border-bottom: none; }
.milestone-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.milestone-text { font-size: 12px; color: var(--text2); line-height: 1.6; }
