:root {
  --bg: #05070b;
  --card: #0d1017;
  --text: #e7ebf3;
  --muted: #9aa4b8;
  --accent: #c6ff61;
  --border: #1c2230;
  --max-width: 1100px;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 20%, rgba(198, 255, 97, 0.08), transparent 32%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 28%), var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(198, 255, 97, 0.2), rgba(198, 255, 97, 0.02));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.cta {
  background: var(--accent);
  color: #0a0c10;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #d6ff92;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(198, 255, 97, 0.35);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(198, 255, 97, 0.4);
}

.ghost {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

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

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

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

.hero__text h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  margin: 12px 0;
  line-height: 1.1;
}

.hero__text .lede {
  color: var(--muted);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(198, 255, 97, 0.12);
  border: 1px solid rgba(198, 255, 97, 0.3);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
}

.card-title {
  font-size: 18px;
  margin: 0;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.meta-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  margin: 0 0 4px;
}

.meta-value {
  margin: 0;
  font-weight: 600;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 50px 20px;
}

.section__header h2 {
  margin: 6px 0 10px;
  font-size: 30px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin: 0;
}

.about .section__header {
  text-align: center;
}

.section#work .section__header {
  text-align: center;
}

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

.credits .credit {
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.credit__label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 8px;
}

.credit h3 {
  margin: 0 0 6px;
}

.credit p {
  margin: 0;
  color: var(--muted);
}

.credit__image {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
  background: #0a0d14;
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
}

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

.credit__text {
  display: grid;
  gap: 6px;
}

.credit__link {
  display: inline-block;
  margin-top: 2px;
  font-weight: 600;
  color: var(--accent);
}

.credits {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.credits__status {
  color: var(--muted);
  margin: 0 0 12px;
}


.studio {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 0.8fr;
}

.bullet-list {
  padding-left: 16px;
  color: var(--muted);
  margin: 12px 0 0;
  line-height: 1.7;
}

.studio__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 26px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

.about__body {
  max-width: 720px;
  color: var(--text);
  text-align: center;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .studio,
  .contact {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .hero__card,
  .contact__form,
  .studio__card {
    margin-top: 10px;
  }
}
