/* ================================================================
   Dummy Demo Site — Dark Theme
   generate-site 스킬로 생성된 결과물 예시
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1a1a1a;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --text2: #8a8a8a;
  --accent: #50EACE;
  --accent-bg: rgba(80,234,206,0.10);
  --accent-rgb: 80,234,206;
  --tag-blue: #60a5fa;
  --tag-blue-bg: rgba(59,130,246,0.12);
  --tag-red: #f87171;
  --tag-red-bg: rgba(239,68,68,0.12);
  --tag-yellow: #fbbf24;
  --tag-yellow-bg: rgba(234,179,8,0.12);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 60px;
}

/* ── Hero ──────────────────────────────────────────────────────── */

.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid rgba(80,234,206,0.2);
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Section ───────────────────────────────────────────────────── */

.section {
  margin-bottom: 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

/* ── Stat Cards ────────────────────────────────────────────────── */

.stat-grid {
  display: grid;
  gap: 14px;
}

.stat-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
}

.stat-val {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: var(--text2);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Card Grid ─────────────────────────────────────────────────── */

.card-grid {
  display: grid;
  gap: 14px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.card-text {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Timeline ──────────────────────────────────────────────────── */

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Insight Box ───────────────────────────────────────────────── */

.insight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 22px 24px;
}

.insight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.insight-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

.insight-text strong {
  color: var(--accent);
}

/* ── Tags ──────────────────────────────────────────────────────── */

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tag-accent { background: var(--accent-bg); color: var(--accent); }
.tag-blue { background: var(--tag-blue-bg); color: var(--tag-blue); }
.tag-yellow { background: var(--tag-yellow-bg); color: var(--tag-yellow); }

/* ── Footer ────────────────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-text {
  font-size: 11px;
  color: var(--text2);
}

/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .container { padding: 32px 24px 48px; }
  .stat-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 20px 16px 40px; }
  .stat-grid-4 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 32px; }
  .hero-title { font-size: 26px; }
  .section-title { font-size: 18px; }
}
