:root {
  --bg: #0b0b0c;
  --panel: #131315;
  --text: #f4f3ef;
  --muted: #9c9ca2;
  --line: #2b2b2f;
  --red: #db0034;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link img { display: block; width: 96px; height: auto; }
.top-links { display: flex; align-items: center; gap: 28px; }
.top-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color 150ms ease;
}
.top-links a:hover, .top-links a:focus-visible { color: var(--text); }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: 40px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  grid-template-rows: auto auto;
  gap: 58px 70px;
  align-items: center;
}
.hero-main { max-width: 700px; }
.kicker, .section-meta, .profile-card figcaption {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker { margin: 0 0 26px; }
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 650;
  line-height: .94;
  letter-spacing: -.065em;
}
.hero-statement {
  max-width: 650px;
  margin: 34px 0 0;
  color: #c6c5c8;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -.025em;
}
.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
  font-weight: 700;
}
.social-cta span { color: var(--red); font-size: 18px; }
.profile-card {
  width: 100%;
  margin: 0;
  align-self: center;
  justify-self: end;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px;
}
.profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
}
.profile-card figcaption { padding: 14px 4px 4px; }
.discipline-strip {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.discipline-strip li {
  min-height: 60px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  color: #b7b6ba;
  font-size: 12px;
  font-weight: 600;
}
.discipline-strip li:first-child { padding-left: 0; }
.discipline-strip li:last-child { border-right: 0; }

.about, .credits {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
}
.about { background: var(--panel); }
.section-meta {
  margin-bottom: 62px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.section-meta span:first-child { color: var(--red); }
.about-content {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 90px;
}
.about h2, .credits h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.about-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-text p { margin: 0; color: #b9b8bd; font-size: 16px; line-height: 1.75; }
.about-text strong { color: var(--text); font-weight: 650; }
.credits { background: var(--bg); }
.credit-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.credits .credit-groups h2 {
  max-width: 480px;
  margin: 0 0 32px;
  color: #d7d6d9;
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 580;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.credit-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.credit-cloud span {
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: #d6d5d8;
  font-size: 14px;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.credit-cloud span:hover { border-color: var(--red); color: white; transform: translateY(-2px); }

.site-footer {
  min-height: 180px;
  padding: 50px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #080809;
  display: grid;
  grid-template-columns: 120px 1fr minmax(250px, auto);
  align-items: center;
  gap: 30px;
}
.site-footer img { width: 82px; }
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 16px 24px; }
.site-footer a { color: #c2c1c5; font-size: 12px; font-weight: 600; }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--red); }

.legal-shell { min-height: 100vh; }
.legal-main { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 120px; }
.legal-main .kicker { color: var(--red); }
.legal-main h1 {
  margin: 0 0 52px;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.06em;
}
.legal-copy { color: #c9c8cc; font-size: 16px; line-height: 1.75; }
.legal-copy h2 { margin: 48px 0 14px; color: var(--text); font-size: 22px; letter-spacing: -.02em; }
.legal-copy p { margin: 0 0 18px; }
.legal-copy a { border-bottom: 1px solid var(--red); }
.legal-copy address { font-style: normal; }
.legal-note { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 800px) {
  .topbar { width: calc(100% - 32px); height: 78px; }
  .logo-link img { width: 80px; }
  .top-links a:not(:last-child) { display: none; }
  .hero {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 56px 0 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 46px;
  }
  .hero-statement { font-size: 20px; }
  .profile-card { width: min(68vw, 270px); justify-self: start; }
  .discipline-strip { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .discipline-strip li { min-height: 48px; padding: 0 12px; border-bottom: 1px solid var(--line); }
  .discipline-strip li:first-child { padding-left: 12px; }
  .about, .credits { padding: 78px 16px; }
  .section-meta { margin-bottom: 44px; }
  .about-content { grid-template-columns: 1fr; gap: 44px; }
  .about-text { grid-template-columns: 1fr; gap: 22px; }
  .credit-groups { grid-template-columns: 1fr; gap: 56px; }
  .credits .credit-groups h2 { margin-bottom: 24px; }
  .site-footer { padding: 42px 16px; grid-template-columns: 1fr; }
  .site-footer p { display: none; }
  .site-footer nav { justify-content: flex-start; }
  .legal-main { width: calc(100% - 32px); padding: 64px 0 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
