:root {
  --bg-black: #0c0c0d;
  --bg-deep: #0c0c0d;
  --text: #ffffff;
  --muted: #ffffff;
  --soft: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff5f1f;
  --glow: #b6f3ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-black);
  overflow-x: clip;
}

body {
  background: var(--bg-black);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.shell {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 3vw, 2rem);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent);
}

.nav-row {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: auto;
  height: clamp(39px, 4.3vw, 56px);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.54;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(12, 12, 13, 0.22), rgba(12, 12, 13, 0.62) 55%, #0c0c0d 100%),
    radial-gradient(circle at center, transparent 0, rgba(12, 12, 13, 0.5) 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin-inline: auto;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  text-align: center;
  transform: translateY(clamp(-16px, -2vh, -8px));
}

.glow-title {
  position: relative;
  display: inline-block;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.96;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(182, 243, 255, 0.28), 0 0 12px rgba(182, 243, 255, 0.12);
  animation: glowPulse 3.2s ease-in-out infinite;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.glow-title:hover {
  transform: translate3d(0, -3px, 0) scale(1.012);
  filter: brightness(1.08);
}

.hero h1 {
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  text-shadow: 0 0 4px rgba(182, 243, 255, 0.24), 0 0 10px rgba(182, 243, 255, 0.1);
}

.hero-subhead {
  margin: 1.25rem auto 0;
  max-width: 760px;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero .hero-cta {
  margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
}

.hero-copy,
.core-line,
.copy-stack,
.case-copy,
.model-list,
.start-list,
.final-cta p,
.faq-answer {
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.48;
}

.hero-copy {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.core-line {
  max-width: 840px;
  margin: 1.15rem auto 0;
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 1.05rem;
  margin-top: 1.35rem;
}

.oval-btn {
  width: min(100%, 620px);
  min-height: 72px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.oval-btn-accent {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), width 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, background-color 260ms ease;
}

.oval-btn-accent:hover,
.oval-btn-accent:focus-visible {
  width: min(100%, 690px);
  transform: translateY(-1px) scale(1.015);
  background: rgba(255, 95, 31, 0.08);
  box-shadow: 0 0 24px rgba(255, 95, 31, 0.28);
}

.text-link {
  position: relative;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-bottom: 0.2rem;
}

.artist-strip {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.artist-strip.is-dragging {
  cursor: grabbing;
}

.strip-track {
  display: flex;
  gap: clamp(0.85rem, 1.5vw, 1.35rem);
  min-width: max-content;
  padding-right: clamp(0.85rem, 1.5vw, 1.35rem);
  animation: stripDrift 72s linear infinite;
}

.artist-strip.is-js .strip-track {
  animation: none;
  will-change: transform;
}

.artist-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 18vw, 300px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.82) contrast(1.08);
  opacity: 0.92;
  transition: filter 240ms ease, opacity 240ms ease, transform 300ms ease;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.artist-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.artist-label strong {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-card:hover img {
  filter: grayscale(0.6) brightness(0.92) contrast(1.06);
  opacity: 1;
  transform: translateY(-3px);
}

.build-audience,
.artist-intro,
.signal-case,
.story-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding-block: clamp(3.8rem, 7.5vw, 6.4rem);
  border-bottom: 1px solid var(--line);
}

.build-audience h2,
.artist-intro h2,
.signal-case h2,
.story-section h2,
.final-cta h2 {
  align-self: start;
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  max-width: 720px;
}

.section-link {
  position: relative;
  justify-self: start;
  width: max-content;
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 180ms ease;
}

.section-link:hover::after,
.section-link:focus-visible::after {
  transform: scaleX(1);
}

.copy-stack,
.case-copy,
.model-list,
.start-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  color: var(--muted);
}

.copy-stack strong,
.start-list span,
.model-list span {
  color: #ffffff;
  font-weight: 900;
}

.case-heading p {
  margin-top: 1rem;
  max-width: 520px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.proof-video {
  aspect-ratio: 9 / 16;
  width: min(100%, 290px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000000;
  overflow: hidden;
}

.proof-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-copy {
  gap: 1rem;
  max-width: 600px;
}

.case-copy strong,
.case-close {
  color: #ffffff;
}

.case-eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-close {
  font-weight: 900;
}

.model-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.model-heading {
  align-self: start;
}

.model-section {
  position: relative;
  overflow: hidden;
}

.model-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.model-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: grayscale(0.15) brightness(0.68) contrast(1.1);
}

.model-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 13, 0.94) 0%, rgba(12, 12, 13, 0.76) 38%, rgba(12, 12, 13, 0.68) 62%, rgba(12, 12, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 12, 13, 0.08) 0%, rgba(12, 12, 13, 0.62) 100%);
}

.model-section > *:not(.model-bg) {
  position: relative;
  z-index: 2;
}

.model-content-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.model-content-wrap .model-list {
  border-top: 0;
}

.model-list article {
  display: grid;
  grid-template-columns: minmax(90px, 0.22fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: clamp(1.35rem, 2.6vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
}

.model-list span,
.start-list span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.model-list span {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.model-list h3 {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 900;
  text-transform: uppercase;
}

.model-list p + p {
  margin-top: 0.55rem;
}

.start-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.start-list p {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.faq-list {
  max-width: 840px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 1.2rem 3.2rem 1.2rem 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  text-transform: uppercase;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  transform: translateY(-50%);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
  background: rgba(255, 95, 31, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 240ms ease, padding 240ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 620px;
  padding: 0 0 1.35rem;
}

.final-cta {
  grid-template-columns: minmax(0, 1100px);
  justify-content: center;
  gap: clamp(2rem, 3.8vw, 2.7rem);
  text-align: center;
  background: var(--bg-black);
}

.final-cta h2 {
  justify-self: center;
  max-width: none;
  font-size: min(5.3rem, 6.3vw);
  white-space: nowrap;
}

.final-cta p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.final-cta .form-intro {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.partner-form {
  width: min(100%, 620px);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.15rem, 2vw, 1.45rem);
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.partner-form label {
  display: grid;
  gap: 0.45rem;
}

.partner-form label span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.partner-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.partner-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 1px rgba(255, 95, 31, 0.24);
}

.final-cta .oval-btn {
  justify-self: center;
  margin-top: clamp(1.15rem, 2.6vw, 1.75rem);
}

.partner-form button {
  cursor: pointer;
  background: transparent;
}

.partner-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  min-height: 1.5em;
  margin-top: 0.35rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #ffffff;
}

.form-status.is-error {
  color: var(--accent);
}

.partner-form.is-submitted > :not(.form-status) {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 142px;
  padding-block: clamp(2.8rem, 6vw, 4rem);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.footer-copyright {
  justify-self: start;
}

.site-footer .footer-social {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  justify-self: center;
  color: #ffffff;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-footer .footer-email {
  justify-self: end;
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 4px rgba(182, 243, 255, 0.24), 0 0 9px rgba(182, 243, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 7px rgba(182, 243, 255, 0.36), 0 0 14px rgba(182, 243, 255, 0.16);
  }
  100% {
    text-shadow: 0 0 4px rgba(182, 243, 255, 0.24), 0 0 9px rgba(182, 243, 255, 0.1);
  }
}

@keyframes stripDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 900px) {
  .shell {
    padding-inline: 1rem;
  }

  .glow-title {
    text-shadow: 0 0 2px rgba(182, 243, 255, 0.1);
    animation: none;
  }

  .brand img {
    height: clamp(45px, 5vw, 64px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
    text-shadow: 0 0 2px rgba(182, 243, 255, 0.12);
    animation: none;
  }

  .hero-subhead {
    font-size: 1.1rem;
  }

  .hero-copy,
  .core-line,
  .copy-stack,
  .case-copy,
  .model-list,
  .start-list,
  .final-cta p,
  .faq-answer {
    font-size: 0.98rem;
  }

  .oval-btn {
    min-height: 62px;
  }

  .build-audience,
  .artist-intro,
  .signal-case,
  .story-section,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-block: clamp(3.6rem, 11vw, 5rem);
  }

  .build-audience h2,
  .artist-intro h2,
  .signal-case h2,
  .story-section h2,
  .final-cta h2 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .final-cta h2 {
    max-width: none;
    font-size: clamp(1.5rem, 6.4vw, 3rem);
    white-space: nowrap;
  }

  .case-layout {
    grid-template-columns: 1fr;
  }

  .proof-video {
    width: min(100%, 280px);
  }

  .model-list article {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    text-align: center;
  }

  .footer-copyright,
  .site-footer .footer-social,
  .site-footer .footer-email {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .shell {
    padding-inline: 1.25rem;
  }

  .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 4.8rem);
  }

  .artist-intro h2 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.95;
  }

  .artist-card {
    width: 172px;
  }

  .signal-case {
    gap: 1.8rem;
    padding-top: 4.25rem;
  }

  .signal-case h2 {
    max-width: none;
    font-size: clamp(2.65rem, 11.2vw, 3.05rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  .case-heading p {
    max-width: 38ch;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    line-height: 1.5;
    white-space: normal;
  }

  .case-layout {
    gap: 0;
  }

  .proof-video {
    aspect-ratio: 4 / 5;
    width: 100%;
    border-radius: 4px;
  }

  .proof-video video {
    object-position: center;
  }

  .case-copy {
    gap: 0.9rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    line-height: 1.55;
  }

  .case-eyebrow {
    max-width: 32ch;
    font-size: 0.74rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .strip-track {
    animation: none;
  }
}
