:root {
  --bg: #0b1120;
  --bg-elevated: #020617;
  --card: #020617;
  --card-border: #1e293b;
  --accent: #38bdf8;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
  color: var(--text);
}

.hero {
  padding: 48px 16px 40px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.03em;
}

.hero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.content {
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 0 16px 32px;
}

.section {
  margin-top: 24px;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 20px 18px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.section p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.3), rgba(15, 23, 42, 0.9));
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 14px 12px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.gallery-item {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  overflow: hidden;
}

.photo-placeholder {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1e40af, #020617);
  color: rgba(241, 245, 249, 0.9);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 14px 16px 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background: radial-gradient(circle at bottom, #020617, #000);
}