:root {
  --black: #030303;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f4f1e8;
  --paper-deep: #e7e0d2;
  --line: rgba(17, 17, 17, 0.16);
  --muted: #77736a;
  --cyan: #19eadb;
  --pink: #f321aa;
  --green: #c8ff78;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--black);
  background-size: 52px 52px;
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
}

.is-ready .loader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  pointer-events: none;
}

.loader img {
  width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  animation: pulseMark 1100ms ease-in-out infinite alternate;
}

.loader div {
  width: min(300px, 72vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader span {
  display: block;
  width: 44%;
  height: 100%;
  background: var(--cyan);
  animation: loaderRun 900ms ease-in-out infinite;
}

.loader p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--green));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 16px 36px;
  color: var(--white);
  background: rgba(3, 3, 3, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(3, 3, 3, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  position: relative;
  z-index: 90;
  justify-self: end;
  display: grid;
  place-items: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 13px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  align-content: center;
  padding: 120px 40px 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(3, 3, 3, 0.96);
  background-size: 56px 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.menu-panel a {
  width: fit-content;
  font-size: clamp(2.4rem, 8vw, 6.8rem);
  line-height: 0.95;
  font-weight: 950;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  color: var(--cyan);
}

.menu-panel p {
  width: min(100%, var(--max));
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 118px 30px 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero-canvas,
.hero-noise,
.hero-frame,
.hero-mark {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-canvas {
  z-index: 1;
  opacity: 0.68;
  mix-blend-mode: screen;
}

.hero-noise {
  z-index: 2;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 10px),
    radial-gradient(circle at 50% 52%, rgba(25, 234, 219, 0.14), transparent 34%),
    radial-gradient(circle at 70% 35%, rgba(243, 33, 170, 0.14), transparent 30%);
  animation: scanMove 9000ms linear infinite;
}

.hero-frame {
  z-index: 4;
  inset: 78px 30px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.hero-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  animation: lineSweep 2800ms ease-in-out infinite;
}

.hero-mark {
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0.52;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 220ms ease-out;
}

.hero-mark img {
  width: min(62vw, 700px);
  max-height: 72svh;
  object-fit: contain;
  filter: saturate(1.18) drop-shadow(0 0 34px rgba(25, 234, 219, 0.2));
  animation: logoBreath 5600ms ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, var(--max));
  text-align: center;
}

.hero-content p {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 auto;
  max-width: 1060px;
  font-size: clamp(3.9rem, 8.9vw, 9rem);
  line-height: 0.88;
  font-weight: 950;
}

.hero-content h1 span {
  display: block;
}

.hero-content em {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  font-style: normal;
  font-weight: 800;
}

.hero-bottom {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 52px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: var(--black);
  background: var(--green);
  border-bottom: 1px solid rgba(3, 3, 3, 0.14);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marqueeMove 28000ms linear infinite;
}

.marquee div::after {
  content: "Management  Casting  Profile Direction  Brand Collaboration  Content Planning  Growth Partnership";
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding: 0 42px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 950;
  white-space: pre;
  text-transform: uppercase;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  padding: 0 42px;
  border-right: 1px solid rgba(3, 3, 3, 0.16);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 124px 36px;
}

.section-dark {
  width: 100%;
  max-width: none;
  color: var(--white);
  background: var(--black);
}

.section-dark > .section-label,
.section-dark > .two-column,
.section-dark > .service-list {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  margin-bottom: 32px;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.two-column h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.3rem);
  line-height: 0.94;
  font-weight: 950;
}

.two-column p,
.body-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 680;
}

.body-copy p + p {
  margin-top: 18px;
}

.section-dark .two-column p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-scene {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  min-height: 680px;
  color: var(--white);
  background: var(--black);
}

.brand-scene__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 46px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
}

.brand-scene__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(25, 234, 219, 0.22) 50%, transparent 58% 100%);
  animation: lightPass 5200ms ease-in-out infinite;
}

.brand-scene__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  animation: floatMark 6200ms ease-in-out infinite;
}

.equalizer {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
}

.equalizer span {
  height: 8px;
  background: var(--cyan);
  transform-origin: left;
  animation: meterPulse 1200ms ease-in-out infinite;
}

.equalizer span:nth-child(2n) {
  background: var(--pink);
  animation-delay: 140ms;
}

.equalizer span:nth-child(3n) {
  background: var(--green);
  animation-delay: 260ms;
}

.brand-scene__copy {
  align-self: center;
  padding: 70px 60px;
}

.brand-scene__copy p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
  font-weight: 950;
}

.brand-scene__copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.brand-scene__copy a,
.artist-card a,
.floating-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand-scene__copy a:hover,
.brand-scene__copy a:focus-visible,
.artist-card a:hover,
.artist-card a:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.work-head {
  margin-bottom: 56px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-list article {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding-left 260ms ease, color 260ms ease;
}

.service-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
  transition: transform 300ms ease;
}

.service-list article > * {
  position: relative;
  z-index: 1;
}

.service-list article:hover {
  padding-left: 24px;
  color: var(--black);
}

.service-list article:hover::before {
  transform: scaleX(1);
}

.service-list span {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 950;
}

.service-list h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 950;
}

.service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.service-list article:hover p {
  color: rgba(3, 3, 3, 0.68);
}

.artists {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(3, 3, 3, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.artist-card {
  min-height: 510px;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(3, 3, 3, 0.18);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.artist-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
  box-shadow: 0 28px 80px rgba(3, 3, 3, 0.28);
}

.artist-card__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 234, 219, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(25, 234, 219, 0.28), rgba(243, 33, 170, 0.2)),
    var(--black);
}

.artist-card__media::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: rotateSignal 10000ms linear infinite;
}

.artist-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.artist-card__media--pink {
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 33, 170, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(243, 33, 170, 0.3), rgba(200, 255, 120, 0.16)),
    var(--black);
}

.artist-card__media--green {
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 255, 120, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(200, 255, 120, 0.22), rgba(25, 234, 219, 0.2)),
    var(--black);
}

.artist-card__media span {
  position: relative;
  z-index: 2;
  font-size: clamp(4rem, 9vw, 7.6rem);
  line-height: 1;
  font-weight: 950;
}

.artist-card__media div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--green));
  animation: lineSweep 2200ms ease-in-out infinite;
}

.artist-card__body {
  padding: 26px;
}

.artist-card__body p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.artist-card h3 {
  margin: 0 0 22px;
  font-size: 2.1rem;
  line-height: 1;
}

.process {
  background: var(--white);
  max-width: none;
  width: 100%;
}

.process > .section-label,
.process > .two-column,
.process > .process-line {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  height: 1px;
  background: var(--line);
}

.process-line article {
  position: relative;
  padding-top: 74px;
}

.process-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border: 1px solid var(--black);
  border-radius: 50%;
  font-weight: 950;
}

.process-line h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.final-message {
  position: relative;
  min-height: 64svh;
  display: grid;
  place-items: center;
  padding: 70px 34px;
  overflow: hidden;
  color: var(--black);
  background: var(--green);
}

.final-message::before {
  content: "ON AIR ON AIR ON AIR ON AIR";
  position: absolute;
  top: 28px;
  left: -4vw;
  color: rgba(3, 3, 3, 0.08);
  font-size: 9vw;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  animation: marqueeMove 22000ms linear infinite reverse;
}

.final-message p {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin: 0;
  text-align: center;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.92;
  font-weight: 950;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(220px, 0.58fr) minmax(320px, 1.24fr);
  gap: 24px;
  margin-top: 58px;
}

.contact-grid > div,
.contact-grid form {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-grid span,
.contact-grid label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-grid a,
.contact-grid p {
  margin: 8px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-grid form {
  display: grid;
  gap: 14px;
}

.contact-grid input,
.contact-grid textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-grid input:focus,
.contact-grid textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.contact-grid button {
  min-height: 50px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 4px;
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-grid button:hover,
.contact-grid button:focus-visible {
  color: var(--black);
  background: var(--cyan);
  transform: translateY(-2px);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  gap: 10px;
  color: var(--white);
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 54px rgba(3, 3, 3, 0.24);
}

.floating-contact strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.8rem;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 36px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--black);
}

.site-footer p,
.site-footer span {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 780ms ease, transform 780ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .two-column,
  .brand-scene,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-list article {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .service-list p {
    grid-column: 2;
  }

  .artist-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    left: 27px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: 96px 20px 42px;
  }

  .hero-frame {
    inset: 74px 14px 24px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1 {
    font-size: clamp(3.15rem, 17vw, 4.8rem);
  }

  .hero-content em {
    font-size: 1rem;
  }

  .hero-mark {
    align-items: end;
    padding-bottom: 80px;
    opacity: 0.38;
  }

  .hero-mark img {
    width: min(92vw, 430px);
  }

  .hero-bottom {
    left: 22px;
    right: 22px;
    bottom: 34px;
    flex-direction: column;
    gap: 4px;
  }

  .marquee span,
  .marquee div::after {
    min-height: 60px;
    padding: 0 24px;
  }

  .section {
    padding: 78px 20px;
  }

  .section-label {
    margin-bottom: 18px;
  }

  .two-column {
    gap: 24px;
  }

  .two-column h2 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .two-column p,
  .body-copy p {
    font-size: 1.02rem;
  }

  .brand-scene {
    min-height: 0;
  }

  .brand-scene__visual {
    min-height: 360px;
    padding: 30px;
  }

  .brand-scene__copy {
    padding: 42px 20px 74px;
  }

  .brand-scene__copy p {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .service-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 26px 0;
  }

  .service-list article:hover {
    padding-left: 12px;
  }

  .artist-card {
    min-height: 430px;
  }

  .process-line article {
    padding-top: 0;
    padding-left: 78px;
    min-height: 100px;
  }

  .process-line span {
    left: 0;
  }

  .final-message {
    min-height: 48svh;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact span {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 20px;
  }
}

@keyframes pulseMark {
  from {
    transform: scale(0.96);
    border-color: rgba(25, 234, 219, 0.24);
  }
  to {
    transform: scale(1);
    border-color: rgba(243, 33, 170, 0.46);
  }
}

@keyframes loaderRun {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes scanMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 120px;
  }
}

@keyframes logoBreath {
  0%, 100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes lineSweep {
  0%, 100% {
    opacity: 0.35;
    transform: scaleX(0.3);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lightPass {
  0%, 35% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@keyframes floatMark {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes meterPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scaleX(0.28);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes rotateSignal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
