:root {
  --bg: #0b0b0d;
  --panel: #151517;
  --border: #26262a;
  --text: #f2efe9;
  --muted: #9a9a9f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.pigment-strip {
  height: 4px;
  display: flex;
}

.pigment-strip span {
  flex: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.wordmark {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.site-header a {
  color: var(--text);
  text-decoration: none;
}

.hero {
  position: relative;
  max-width: 1040px;
  margin: 24px auto 0;
  padding: 96px 24px;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-layer video,
.hero-video-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto;
  max-width: 540px;
}

.hero-video-layer + .hero-content p {
  color: #e4e1da;
}

.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.step-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}

.step h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

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

.contests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.contest-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
}

.contest-card .client {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contest-card .title {
  font-size: 16px;
  font-weight: 600;
}

.site-footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--muted);
}

.footer-copyright {
  margin: 0;
}

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 72px 20px; min-height: 300px; }
}
