:root {
  --bg: #0b0b0d;
  --bg-alt: #131317;
  --text: #f1efe9;
  --text-dim: #a8a4a0;
  --accent: #d4a537;
  --accent-2: #7c6bff;
  --line: rgba(255,255,255,0.1);
  --radius: 14px;
  --max-w: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-inner, .hero-inner, .nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,11,13,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(124,107,255,0.15), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(212,165,55,0.12), transparent 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  aspect-ratio: 3 / 4;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.hero-lede {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 46ch;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #14110a;
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-outline:hover { border-color: var(--accent); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  animation: bob 2s infinite ease-in-out;
  font-size: 1.2rem;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Sections */
.section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.num {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.section p {
  color: var(--text-dim);
  max-width: 70ch;
  font-size: 1.05rem;
}

.section-intro {
  margin-bottom: 40px;
}

.about { background: var(--bg-alt); }

/* Dev industry grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.industry-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* DJ section */
.dj { background: var(--bg-alt); }

.dj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(124,107,255,0.08);
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 126px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.tl-year {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
  padding-top: 2px;
}

.tl-text {
  padding-left: 24px;
  color: var(--text);
  font-size: 1.02rem;
}

/* Contact */
.contact {
  text-align: center;
}

.contact .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact h2 { justify-content: center; }

.contact p { margin-bottom: 28px; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--text-dim);
  text-decoration: underline;
}

.site-footer a:hover { color: var(--accent); }

/* Legal page */
.legal h3 {
  font-size: 1.1rem;
  margin: 36px 0 12px;
}

.legal h3:first-of-type { margin-top: 0; }

.legal p {
  max-width: 68ch;
}

.legal ul {
  color: var(--text-dim);
  max-width: 68ch;
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 24px;
  }
  .hero-image { max-width: 320px; margin: 0 auto; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a {
    display: block;
    padding: 16px 24px;
  }
  .nav-toggle { display: flex; }

  .timeline::before { left: 10px; }
  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 24px;
  }
  .timeline li::before { left: 6px; top: 8px; }
  .tl-year { text-align: left; }
  .tl-text { padding-left: 0; }
}

@media (max-width: 520px) {
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .btn { padding: 13px 22px; }
}
