:root {
  --background: #080808;
  --foreground: #f7f7f4;
  --muted: #9b9b97;
  --line: rgba(247, 247, 244, 0.16);
  --panel: #10100f;
  --panel-strong: #161614;
  --acid: #d8ff3e;
  --signal: #ff3d5a;
  --blue: #4da3ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 61, 90, 0.08), transparent 36%),
    radial-gradient(circle at 80% 14%, rgba(216, 255, 62, 0.12), transparent 24rem),
    var(--background);
}

.hero-band,
.content-band,
.split-band,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-band {
  min-height: 100vh;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foreground);
  color: var(--background);
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: var(--foreground);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 36px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow,
.profile-kicker {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(4.4rem, 10vw, 8.4rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 660px;
  color: #d8d8d2;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions,
.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #101108;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.note-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: #c9c9c4;
  font-size: 0.88rem;
}

.hero-panel {
  display: grid;
}

.profile-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.profile-frame {
  display: grid;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(77, 163, 255, 0.2), transparent 45%),
    linear-gradient(315deg, rgba(255, 61, 90, 0.18), transparent 42%),
    var(--panel-strong);
  color: rgba(247, 247, 244, 0.54);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.profile-card h2 {
  margin-top: 4px;
  font-size: 2rem;
}

.profile-card p:not(.profile-kicker) {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.content-band {
  padding: 84px 0 64px;
}

.section-heading {
  display: grid;
  max-width: 690px;
  gap: 12px;
}

.section-heading h2,
.statement h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.statement p:not(.eyebrow),
.contact-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.media-slot {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
  padding: 18px;
}

.slot-number {
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 900;
}

.media-slot h3 {
  margin-top: 72px;
  font-size: 1.35rem;
}

.media-slot p {
  color: var(--muted);
}

.media-slot--image {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
}

.media-slot--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.82)
  );
  content: "";
  pointer-events: none;
}

.media-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-slot--image > :not(.media-image) {
  position: relative;
  z-index: 2;
}

.media-slot--video {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
}

.media-slot--video::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(0, 0, 0, 0.82)
  );
  content: "";
  pointer-events: none;
}

.media-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.media-slot--video > :not(.media-video) {
  position: relative;
  z-index: 2;
}

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.vibe-tags span {
  padding: 9px 14px;
  border: 1px solid var(--acid);
  border-radius: 999px;
  color: #d8d8d8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  padding: 32px 0 76px;
}

.statement,
.contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(22px, 4vw, 36px);
}

.contact-panel {
  background:
    radial-gradient(circle at 96% 6%, rgba(216, 255, 62, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.04);
}

.contact-placeholder {
  margin-top: 12px;
  border: 1px dashed rgba(247, 247, 244, 0.28);
  border-radius: 8px;
  padding: 18px;
  color: #d7d7d0;
  font-weight: 800;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mail-button {
  display: inline-block;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--acid);
  color: #d7d7d0;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: 0.2s ease;
}

.mail-button:hover {
  background: var(--acid);
  border: 2px solid rgb(255, 255, 255);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 24px 0 38px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero-band {
    min-height: auto;
  }

  .hero-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(4rem, 20vw, 6.6rem);
  }

  .profile-frame {
    min-height: 320px;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-band,
  .content-band,
  .split-band,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    max-width: 220px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}
