/* ════════════════════════════════════════════════
   ICT Trading Insights — Curation Site
   Design System & Styles
   ════════════════════════════════════════════════ */

/* ── IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --bg-primary: #050506;
  --bg-secondary: #0a0a0c;
  --bg-surface: #0f0f12;
  --bg-surface-2: #141418;
  --bg-surface-3: #1a1a1f;
  --bg-glass: rgba(15, 15, 18, 0.72);
  --bg-glass-2: rgba(20, 20, 24, 0.65);

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(245, 158, 11, 0.3);

  --gold: #f59e0b;
  --gold-dim: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.15);
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --orange: #f97316;
  --red: #ef4444;
  --pink: #ec4899;
  --green: #22c55e;

  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --text-dim: #3f3f46;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  --font-sans: 'Space Grotesk', 'Noto Sans KR', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--bg-surface-3);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}

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

.nav-link {
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.nav-link.active {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--border-accent);
}

.nav-x-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-x-btn:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-3);
  transform: translateY(-1px);
}

.nav-x-btn svg {
  width: 14px;
  height: 14px;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 120px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--gold), #fbbf24, var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  border: none;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════ */
.stats-bar {
  padding: 0 0 60px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  padding: 24px;
  text-align: center;
  transition: background var(--transition);
}

.stat-card:hover {
  background: var(--bg-surface);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-value.gold { color: var(--gold); }
.stat-value.green { color: var(--green); }
.stat-value.blue { color: var(--blue); }
.stat-value.purple { color: var(--purple); }

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════
   SECTION HEADER
   ════════════════════════════════════════════════ */
.section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ════════════════════════════════════════════════
   FEATURED POSTS
   ════════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.featured-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.featured-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.featured-card:hover::before { opacity: 1; }

.featured-num {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.featured-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.featured-summary {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.featured-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.tag.gold { color: var(--gold); background: var(--gold-glow); border-color: var(--border-accent); }

/* Badge Styles */
.tier-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.tier-badge.free {
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tier-badge.paid {
  background: rgba(148, 163, 184, 0.08);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.status-badge.published {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.upcoming {
  background: rgba(82, 82, 91, 0.15);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ════════════════════════════════════════════════
   FILTER BAR
   ════════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--text-secondary);
  border-color: var(--border-hover);
}

.filter-btn.active {
  color: var(--gold);
  border-color: var(--border-accent);
  background: var(--gold-glow);
}

.filter-search {
  flex: 1;
  min-width: 200px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  outline: none;
  transition: all var(--transition);
}

.filter-search::placeholder {
  color: var(--text-dim);
}

.filter-search:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ════════════════════════════════════════════════
   TIMELINE / ARTICLES GRID
   ════════════════════════════════════════════════ */
.part-group {
  margin-bottom: 48px;
}

.part-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.part-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
}

.part-info {
  flex: 1;
}

.part-name {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.part-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

/* ════════════════════════════════════════════════
   ARTICLE CARD
   ════════════════════════════════════════════════ */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
  overflow: hidden;
}

.article-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.article-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-card:hover::after { opacity: 1; }

.article-card.has-link { cursor: pointer; }

.article-card[data-part="1"]::after { background: rgba(245, 158, 11, 0.04); }
.article-card[data-part="2"]::after { background: rgba(59, 130, 246, 0.04); }
.article-card[data-part="3"]::after { background: rgba(6, 182, 212, 0.04); }
.article-card[data-part="4"]::after { background: rgba(139, 92, 246, 0.04); }
.article-card[data-part="5"]::after { background: rgba(249, 115, 22, 0.04); }
.article-card[data-part="6"]::after { background: rgba(239, 68, 68, 0.04); }
.article-card[data-part="7"]::after { background: rgba(236, 72, 153, 0.04); }
.article-card[data-part="8"]::after { background: rgba(34, 197, 94, 0.04); }

.article-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.article-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.article-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-card-summary {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.article-card-part {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 500;
}

.article-card-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}

.article-card:hover .article-card-action { gap: 8px; }

.article-card-action.upcoming {
  color: var(--text-dim);
}

.read-here-btn {
  color: var(--text-muted) !important;
  font-size: 0.7rem !important;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-surface-2);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.read-here-btn:hover {
  color: var(--gold) !important;
  border-color: var(--border-accent);
  background: var(--gold-glow);
}

.article-card-action svg {
  width: 12px;
  height: 12px;
}

/* X Post embed inside card */
.x-embed-container {
  margin-top: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.x-embed-container .twitter-tweet {
  margin: 0 !important;
}

/* ════════════════════════════════════════════════
   X FEED SECTION
   ════════════════════════════════════════════════ */
.x-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.x-post-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all var(--transition);
}

.x-post-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.x-post-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-dim);
}

.x-post-placeholder svg {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  opacity: 0.3;
}

.x-post-placeholder p {
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   ROADMAP / ABOUT
   ════════════════════════════════════════════════ */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.roadmap-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 2px;
}

.roadmap-card[data-part="1"]::before { background: var(--gold); }
.roadmap-card[data-part="2"]::before { background: var(--blue); }
.roadmap-card[data-part="3"]::before { background: var(--cyan); }
.roadmap-card[data-part="4"]::before { background: var(--purple); }
.roadmap-card[data-part="5"]::before { background: var(--orange); }
.roadmap-card[data-part="6"]::before { background: var(--red); }
.roadmap-card[data-part="7"]::before { background: var(--pink); }
.roadmap-card[data-part="8"]::before { background: var(--green); }

.roadmap-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.roadmap-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.roadmap-name {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.roadmap-count-info {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.roadmap-progress {
  margin-top: 14px;
  height: 3px;
  background: var(--bg-surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.roadmap-progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.8s var(--ease);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.footer-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
}

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

.footer-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2rem; }

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

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

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

  .x-feed-grid { grid-template-columns: 1fr; }

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

  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { min-width: auto; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════
   SKELETON LOADING
   ════════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-surface-2) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ════════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--bg-surface-2);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  color: var(--gold);
}
