:root {
  --bg: #05070a;
  --panel: #0c1016;
  --panel-2: #111820;
  --text: #f7f7f2;
  --muted: #a8b0b6;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #20d7d2;
  --amber: #f5a524;
  --rose: #ff4d8d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(32, 215, 210, 0.14), transparent 34%),
    radial-gradient(circle at 85% 14%, rgba(245, 165, 36, 0.13), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(5, 7, 10, 0.58);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.86);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(32, 215, 210, 0.2), rgba(245, 165, 36, 0.16));
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-panel,
.section {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  padding: 132px clamp(18px, 5vw, 76px) 58px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    radial-gradient(circle at 22% 24%, rgba(32, 215, 210, 0.24), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(245, 165, 36, 0.18), transparent 24%),
    radial-gradient(circle at 65% 78%, rgba(255, 77, 141, 0.1), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #05070a 0%, #08141a 48%, #05070a 100%);
  opacity: 1;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92) 0%, rgba(5, 7, 10, 0.72) 43%, rgba(5, 7, 10, 0.34) 74%, rgba(5, 7, 10, 0.86) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 7, 10, 0.15) 35%, rgba(5, 7, 10, 0.72) 100%);
}

.hero-content {
  max-width: 870px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: #d4d9dc;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions,
.hero-meta,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #071011;
  font-weight: 900;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.hero-meta {
  margin-top: 34px;
}

.hero-meta span {
  display: inline-grid;
  min-width: 142px;
  gap: 4px;
  padding: 15px 16px;
  border-left: 2px solid rgba(32, 215, 210, 0.72);
  background: rgba(0, 0, 0, 0.22);
}

.hero-meta strong {
  color: var(--text);
}

.hero-meta {
  color: var(--muted);
  font-size: 13px;
}

.creator-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(12, 16, 22, 0.7);
  box-shadow: var(--shadow);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  overflow: hidden;
  background: #0b0f14;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 7, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(32, 215, 210, 0.14), transparent 42%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 68%;
  filter: saturate(0.88) contrast(1.08) brightness(0.9);
  transform: scale(1.08);
}

.portrait-tag {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 10, 0.62);
}

.portrait-tag strong,
.portrait-tag span {
  display: block;
}

.portrait-tag strong {
  font-size: 20px;
}

.portrait-tag span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.creator-details {
  padding: 22px;
}

.signal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.signal span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 24px var(--teal);
}

.signal p {
  margin: 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.metric-grid div {
  min-height: 112px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-grid strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.timeline-visual {
  position: relative;
  height: 96px;
  margin-top: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 100% 24px;
}

.timeline-visual::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 2px;
  background: var(--text);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
  animation: scrub 3.8s ease-in-out infinite;
}

.timeline-visual span {
  position: absolute;
  left: var(--x);
  top: calc(16px + var(--x) / 5);
  width: var(--w);
  height: 14px;
  background: var(--c);
}

.section {
  padding: 96px clamp(18px, 5vw, 76px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(32, 215, 210, 0.07), transparent 48%),
    var(--bg);
}

.about-copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.02;
}

.about-text p {
  margin: 36px 0 0;
  color: #d2d7da;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

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

.work-band {
  background: linear-gradient(180deg, var(--bg), #081014 48%, var(--bg));
}

.reel-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.reel-wall article {
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  transition: transform 220ms ease, background 220ms ease;
}

.reel-wall article:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(32, 215, 210, 0.14), rgba(245, 165, 36, 0.04)),
    var(--panel);
}

.reel-wall span,
.service-icon,
.process-grid span {
  color: var(--amber);
  font-weight: 900;
}

.reel-wall h3,
.service-card h3,
.process-grid h3 {
  margin: 80px 0 12px;
  font-size: 25px;
}

.reel-wall p,
.service-card p,
.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.marquee {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #f7f7f2;
  color: #05070a;
}

.marquee div {
  display: flex;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 18px 26px;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.service-card h3 {
  margin-top: 0;
}

.process-section {
  background: linear-gradient(180deg, #071014, #05070a);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.process-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.process-grid h3 {
  margin-top: 52px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.simple-contact {
  grid-template-columns: 1fr;
}

.contact-panel {
  display: grid;
  align-content: space-between;
  min-height: 430px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(32, 215, 210, 0.14), rgba(245, 165, 36, 0.1)),
    var(--panel);
  border: 1px solid var(--line);
}

.contact-actions {
  margin-top: 30px;
}

.contact-actions a {
  min-width: min(100%, 260px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.18);
  color: #e6edf0;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: riseIn 520ms ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrub {
  0%,
  100% {
    left: 12%;
  }
  50% {
    left: 82%;
  }
}

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

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

  .hero {
    align-items: start;
  }

  .creator-card {
    max-width: 520px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 7, 10, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 44px;
  }

  h1 {
    font-size: clamp(42px, 16vw, 72px);
  }

  .section {
    padding: 72px 18px;
  }

  .reel-wall,
  .process-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .reel-wall article {
    min-height: 230px;
  }

  .reel-wall h3 {
    margin-top: 54px;
  }

  .contact-panel {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

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