@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("assets/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0d0d0e;
  --ink-soft: #191817;
  --paper: #f4f1eb;
  --paper-dim: #ded8cf;
  --line-dark: rgba(13, 13, 14, 0.18);
  --line-light: rgba(255, 255, 255, 0.16);
  --acid: #c9ff2f;
  --graphite: #242321;
  --white: #fff;
  --display: "Oswald", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --radius: 2px;
  --shell: min(1380px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--acid) var(--ink);
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--acid);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 82px;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: height 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(9, 10, 10, 0.96);
}

.brand {
  justify-self: start;
  font: 700 22px/1 var(--display);
  letter-spacing: 0.08em;
}

.brand-dot,
.footer-brand i {
  color: var(--acid);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-cta {
  position: relative;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-self: end;
  padding: 11px 15px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--acid);
  border: 1px solid var(--acid);
  overflow: hidden;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: transparent;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  inset: -44px 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 7, 7, 0.95) 0%, rgba(8, 7, 7, 0.67) 42%, rgba(8, 7, 7, 0.18) 78%),
    linear-gradient(180deg, rgba(8, 7, 7, 0.42) 0%, transparent 40%, rgba(8, 7, 7, 0.84) 100%);
}

.hero::after {
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255, 255, 255, 0.1) 25%, transparent calc(25% + 1px));
  background-size: 25% 100%;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-one {
  top: 6%;
  left: 38%;
  width: 32vw;
  aspect-ratio: 1;
}

.orbit-two {
  top: -10%;
  left: 29%;
  width: 56vw;
  aspect-ratio: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-top: 76px;
}

.eyebrow,
.kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px 6px;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font: 700 clamp(90px, 12.6vw, 212px)/0.79 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(105%);
}

.outline-word {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.hero-title.is-visible span {
  animation: title-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title.is-visible span:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) 1fr;
  gap: 7vw;
  align-items: end;
  margin-top: 46px;
}

.hero-copy {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.2vw, 18px);
}

.hero-copy strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-weight: 600;
}

.hero-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.price-pill {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 114px;
  padding: 22px 58px 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease, background 0.25s ease;
}

.price-pill span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.price-pill strong {
  font: 600 clamp(28px, 2.5vw, 40px)/1 var(--display);
  letter-spacing: -0.02em;
}

.price-pill i {
  position: absolute;
  top: 21px;
  right: 20px;
  font-size: 22px;
  font-style: normal;
}

.price-pill:hover,
.price-pill:focus-visible,
.price-pill-accent {
  color: var(--ink);
  background: var(--acid);
}

.price-pill:hover span,
.price-pill:focus-visible span,
.price-pill-accent span {
  color: rgba(9, 10, 10, 0.65);
}

.price-pill-accent:hover,
.price-pill-accent:focus-visible {
  color: var(--white);
  background: var(--ink-soft);
}

.price-pill-accent:hover span,
.price-pill-accent:focus-visible span {
  color: rgba(255, 255, 255, 0.7);
}

.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - 1380px) / 2));
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-cue i {
  color: var(--acid);
  font-size: 19px;
  font-style: normal;
  animation: nudge 1.8s ease-in-out infinite;
}

.business-ticker {
  position: relative;
  scroll-margin-top: 66px;
  color: var(--white);
  background: var(--ink);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  contain: paint;
  overflow: hidden;
}

.business-ticker::before,
.business-ticker::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: clamp(18px, 5vw, 90px);
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.business-ticker::after {
  right: 0;
  left: auto;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: business-ticker 30s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(24px, 3.2vw, 54px);
  align-items: center;
  min-height: 72px;
  padding-right: clamp(24px, 3.2vw, 54px);
  font: 600 clamp(19px, 1.9vw, 31px)/1 var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticker-group i {
  color: var(--acid);
  font: 400 22px/1 var(--body);
  font-style: normal;
}

.ticker-group strong {
  color: var(--acid);
  font-weight: 600;
}

.business-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.section {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.52fr 1.1fr 0.48fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 74px;
}

.section-heading h2 {
  margin: 0;
  font: 600 clamp(54px, 6.4vw, 100px)/0.95 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: rgba(13, 13, 14, 0.04);
  -webkit-text-stroke: 1.35px rgba(13, 13, 14, 0.9);
}

.section-heading > p:last-child {
  max-width: 350px;
  margin: 0;
  color: rgba(9, 10, 10, 0.78);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 780px;
  padding: 32px;
  border: 1px solid var(--ink);
  contain: paint;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.service-card.is-visible:hover {
  z-index: 2;
  box-shadow: 0 24px 70px rgba(13, 13, 14, 0.14);
  transform: translateY(-8px);
}

.service-card::before {
  position: absolute;
  inset: -50% auto auto 62%;
  width: 400px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.reels-card {
  color: var(--ink);
  background: var(--paper-dim);
}

.youtube-card {
  color: var(--white);
  background: var(--graphite);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 64px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.service-card h3 {
  margin: 0;
  font: 700 clamp(72px, 8vw, 125px)/0.8 var(--display);
  letter-spacing: -0.06em;
}

.youtube-card h3 span {
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.92);
}

.card-lead {
  margin: 20px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-stack {
  margin-top: 54px;
  border-top: 1px solid var(--ink);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--ink);
}

.price-row > span,
.price-row div > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-row strong {
  font: 600 48px/1 var(--display);
}

.price-row small,
.youtube-price em {
  font: 600 17px/1 var(--display);
  font-style: normal;
}

.price-row del {
  margin-right: 10px;
  color: rgba(9, 10, 10, 0.62);
  font-size: 12px;
}

.featured-price {
  margin-inline: -20px;
  padding-inline: 20px;
  background: var(--paper);
}

.youtube-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-block: 28px 20px;
  margin-top: 54px;
  border-block: 1px solid rgba(255, 255, 255, 0.72);
}

.youtube-price > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.youtube-price strong {
  font: 600 56px/0.9 var(--display);
}

.youtube-price strong small {
  font: 500 15px/1 var(--body);
  text-transform: uppercase;
}

.included-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.included-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 46px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.included-list li span {
  font-size: 9px;
  font-weight: 800;
  opacity: 0.7;
}

.card-note {
  margin: 18px 0 22px;
  font-size: 10px;
  opacity: 0.8;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding-inline: 20px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 1px solid currentColor;
  transition: color 0.25s ease, background 0.25s ease;
}

.card-button:hover,
.card-button:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.dark-button:hover,
.dark-button:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.studio-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  margin-top: 20px;
  color: var(--white);
  background: var(--ink);
}

.studio-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  font-size: 23px;
  background: var(--acid);
  border-radius: 50%;
}

.studio-banner p,
.studio-banner strong {
  margin: 0;
}

.studio-banner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-banner strong {
  font-size: clamp(16px, 1.7vw, 24px);
}

.studio-tag {
  color: var(--acid);
  font: 600 15px/1 var(--display);
  letter-spacing: 0.08em;
}

.process {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.process::before {
  position: absolute;
  top: -280px;
  right: -200px;
  width: 720px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(201, 255, 47, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(201, 255, 47, 0.05) inset;
}

.light-heading {
  grid-template-columns: 0.52fr 1fr 0.52fr;
}

.light-heading h2 span {
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.9);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step {
  position: relative;
  min-height: 350px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.step-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 52px 0 44px;
  place-items: center;
  color: var(--ink);
  font-size: 28px;
  background: var(--acid);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72) rotate(-12deg);
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.is-visible .step-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.process-step:nth-child(2) .step-icon {
  color: var(--ink);
  background: var(--paper-dim);
}

.process-step:nth-child(3) .step-icon {
  color: var(--ink);
  background: var(--white);
}

.process-step:hover .step-icon {
  transform: rotate(12deg) scale(1.08);
}

.process-step h3 {
  margin: 0 0 10px;
  font: 600 34px/1 var(--display);
  text-transform: uppercase;
}

.process-step p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.split-heading {
  grid-template-columns: 1fr 0.34fr;
  align-items: end;
}

.split-heading .kicker {
  margin-bottom: 26px;
}

.split-heading h2 span {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: start;
}

.work-card {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 9 / 13;
  padding: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: var(--ink-soft);
  border: 1px solid rgba(13, 13, 14, 0.12);
  contain: paint;
  overflow: hidden;
  isolation: isolate;
}

.work-card:nth-child(n + 4) {
  grid-column: span 3;
}

.work-card:nth-child(2),
.work-card:nth-child(5),
.work-card:nth-child(7) {
  margin-top: 42px;
}

.work-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(13, 13, 14, 0.04) 45%, rgba(13, 13, 14, 0.88) 100%);
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.04);
}

.work-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--acid);
}

.work-card strong {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  font: 600 24px/1 var(--display);
  text-transform: uppercase;
}

.work-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--ink);
  font-size: 17px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.work-card:hover .work-play,
.work-card:focus-visible .work-play {
  color: var(--ink);
  background: var(--acid);
  transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-note {
  margin: 20px 0 0;
  color: rgba(9, 10, 10, 0.7);
  font-size: 11px;
  text-align: right;
}

.cta-section {
  position: relative;
  min-height: 700px;
  color: var(--white);
  background: var(--ink-soft);
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(201, 255, 47, 0.3);
  border-radius: 50%;
}

.cta-section::before {
  top: -32vw;
  left: 14%;
  width: 70vw;
  aspect-ratio: 1;
}

.cta-section::after {
  top: -16vw;
  left: 29%;
  width: 42vw;
  aspect-ratio: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  text-align: center;
}

.cta-inner h2 {
  margin: 18px 0;
  font: 700 clamp(110px, 17vw, 260px)/0.82 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.cta-inner h2 span {
  color: var(--acid);
}

.cta-inner > p:not(.kicker) {
  max-width: 520px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.big-cta {
  display: flex;
  align-items: center;
  width: min(380px, 100%);
  min-height: 68px;
  padding: 6px 6px 6px 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--acid);
  border: 1px solid var(--acid);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.big-cta:hover,
.big-cta:focus-visible {
  box-shadow: 0 14px 50px rgba(201, 255, 47, 0.18);
  transform: translateY(-5px);
}

.big-cta i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-left: auto;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.big-cta:hover i,
.big-cta:focus-visible i {
  transform: rotate(45deg);
}

.footer {
  padding-block: 68px 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.8fr 0.75fr;
  gap: 30px;
}

.footer-brand {
  font: 700 clamp(52px, 6vw, 90px)/0.8 var(--display);
  letter-spacing: -0.04em;
}

.footer-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-meta) a {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  font-size: 13px;
}

.footer-grid > div:not(.footer-meta) a:hover,
.footer-grid > div:not(.footer-meta) a:focus-visible {
  color: var(--acid);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-dialog,
.preview-dialog,
.success-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  color: var(--white);
  background: rgba(7, 8, 8, 0.96);
  border: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, overlay 0.3s ease allow-discrete, display 0.3s ease allow-discrete;
}

.order-dialog:not([open]),
.preview-dialog:not([open]),
.success-dialog:not([open]) {
  display: none;
}

.order-dialog[open],
.preview-dialog[open],
.success-dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

@starting-style {
  .order-dialog[open],
  .preview-dialog[open],
  .success-dialog[open] {
    opacity: 0;
    transform: translateY(20px);
  }
}

.order-dialog::backdrop,
.preview-dialog::backdrop,
.success-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.dialog-shell {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  width: min(1180px, calc(100vw - 64px));
  min-height: 100%;
  padding-block: 90px 50px;
  margin: auto;
  align-items: center;
}

.dialog-close {
  position: fixed;
  top: 26px;
  right: 30px;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.preview-dialog .dialog-close {
  background: var(--ink);
}

.preview-dialog .dialog-close:hover,
.preview-dialog .dialog-close:focus-visible {
  background: var(--acid);
}

.dialog-intro h2 {
  margin: 22px 0;
  font: 600 clamp(60px, 7vw, 104px)/0.92 var(--display);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.dialog-intro h2 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.dialog-intro > p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.order-form {
  display: grid;
  gap: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.order-form label > span,
.order-form legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--white);
  caret-color: var(--acid);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--acid);
}

.order-form label.is-invalid input {
  border-color: #ff6c6c;
}

.order-form label.is-invalid textarea {
  border-color: #ff6c6c;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #ffaaaa;
  font-size: 11px;
  font-weight: 600;
}

.is-invalid .field-error {
  display: block;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 18px;
  margin: -10px 0 -12px;
  color: #ffb1b1;
  font-size: 11px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.order-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-row {
  display: flex;
  gap: 8px;
}

.choice {
  flex: 1;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice > span {
  display: grid !important;
  min-height: 46px;
  margin: 0 !important;
  place-items: center;
  color: var(--white) !important;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.choice input:checked + span {
  color: var(--ink) !important;
  background: var(--acid);
  border-color: var(--acid);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.submit-button {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 5px 5px 5px 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--acid);
  border: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-button:hover:not(:disabled),
.submit-button:focus-visible:not(:disabled) {
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.submit-button i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-left: auto;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  background: var(--ink);
  border-radius: 50%;
}

.submit-button.is-sending i {
  width: 22px;
  height: 22px;
  margin-right: 13px;
  color: transparent;
  background: transparent;
  border: 2px solid rgba(13, 13, 14, 0.24);
  border-top-color: var(--ink);
  animation: video-spin 0.7s linear infinite;
}

.form-privacy {
  margin: -17px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.form-success {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  padding: clamp(44px, 7vw, 72px) clamp(24px, 6vw, 64px);
  color: var(--white);
  text-align: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.form-success > span {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  place-items: center;
  color: var(--ink);
  font-size: 36px;
  background: var(--acid);
  border-radius: 50%;
}

.form-success h3 {
  margin: 12px 0 0;
  font: 600 clamp(54px, 8vw, 82px)/0.95 var(--display);
  text-transform: uppercase;
}

.form-success .kicker {
  justify-content: center;
  color: var(--acid);
}

.form-success > p:not(.kicker) {
  max-width: 410px;
  margin: 20px auto 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.form-success button {
  min-width: 180px;
  padding: 14px 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--acid);
  border: 0;
}

.form-success .dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-success .dialog-close:hover,
.form-success .dialog-close:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.preview-dialog[open],
.success-dialog[open] {
  display: grid;
  place-items: center;
}

.success-dialog {
  background: transparent;
}

.video-placeholder {
  position: relative;
  display: grid;
  width: min(440px, calc(100vw - 40px));
  height: min(820px, calc(100svh - 48px));
  aspect-ratio: 9 / 16;
  place-items: center;
  align-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 45%, #2b211d, #080808 64%);
  border: 1px solid var(--line-light);
  overflow: hidden;
}

.video-loader {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--acid);
  border-radius: 50%;
  animation: video-spin 0.8s linear infinite;
}

.video-placeholder p {
  margin: 18px 0 0;
  font: 600 22px/1 var(--display);
  text-transform: uppercase;
}

.video-placeholder > a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 9px 12px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--acid);
}

.video-placeholder iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.video-placeholder.is-loaded .video-loader,
.video-placeholder.is-loaded > p {
  opacity: 0;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: 320px;
  padding: 13px 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
  background: var(--acid);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease var(--reveal-delay, 0ms), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

.work-card.reveal {
  transform: translateY(42px) scale(0.97);
}

.work-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes title-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes business-ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0; transform: scale(0.72); }
  50% { opacity: 0.42; transform: scale(1.45); }
}

@keyframes nudge {
  50% { transform: translateY(6px); }
}

@keyframes video-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  :root { --shell: calc(100vw - 40px); }

  .site-header { padding-inline: 20px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { min-height: 720px; }
  .hero::after { background-size: 50% 100%; }
  .hero-title { font-size: clamp(68px, 15.8vw, 140px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; margin-top: 38px; }
  .hero-copy { max-width: 530px; }
  .hero-prices { max-width: 650px; }
  .scroll-cue { display: none; }

  .section { padding-block: 96px; }
  .section-heading,
  .light-heading { grid-template-columns: 0.35fr 1fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-card { min-height: 760px; padding: 24px; }
  .service-card h3 { font-size: clamp(58px, 11vw, 96px); }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card,
  .work-card:nth-child(n + 4) { grid-column: span 1; }
  .work-card:nth-child(2),
  .work-card:nth-child(5),
  .work-card:nth-child(7) { margin-top: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / 4; margin-bottom: 30px; }
  .dialog-shell { width: calc(100vw - 40px); gap: 44px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100vw - 28px); }

  .site-header { height: 64px; padding-inline: 14px; }
  .site-header.is-scrolled { height: 58px; }
  .brand { font-size: 19px; }
  .header-cta { gap: 8px; padding: 9px 10px; font-size: 9px; }

  .hero { min-height: 700px; height: 100svh; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8, 7, 7, 0.92), rgba(8, 7, 7, 0.36)), linear-gradient(180deg, rgba(8, 7, 7, 0.34), transparent 32%, rgba(8, 7, 7, 0.92)); }
  .hero-content { justify-content: end; padding: 92px 0 50px; }
  .eyebrow { margin: 0 0 14px 2px; }
  .hero-title { font-size: clamp(53px, 16.2vw, 90px); line-height: 0.84; letter-spacing: -0.055em; }
  .outline-word { -webkit-text-stroke-width: 1px; }
  .hero-bottom { gap: 24px; margin-top: 28px; }
  .hero-copy { max-width: 330px; font-size: 13px; }
  .hero-prices { grid-template-columns: 1fr; border-bottom: 0; }
  .price-pill { min-height: 76px; padding: 13px 48px 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.32); }
  .price-pill strong { font-size: 27px; }
  .price-pill i { top: 15px; right: 14px; }
  .orbit-one { width: 78vw; left: 34%; top: 14%; }
  .orbit-two { width: 124vw; left: 4%; top: 6%; }

  .ticker-track { animation-duration: 22s; }
  .ticker-group { min-height: 58px; font-size: 18px; }
  .section { padding-block: 78px; }
  .section-heading,
  .light-heading,
  .split-heading { display: block; margin-bottom: 46px; }
  .section-heading .kicker { margin-bottom: 22px; }
  .section-heading h2 { font-size: clamp(48px, 15vw, 74px); }
  .section-heading > p:last-child { margin-top: 22px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 690px; padding: 20px; }
  .card-topline { margin-bottom: 44px; }
  .service-card h3 { font-size: 76px; }
  .card-lead { font-size: 10px; }
  .price-stack, .youtube-price { margin-top: 38px; }
  .price-row strong { font-size: 40px; }
  .youtube-price strong { font-size: 44px; }
  .included-list li { min-height: 43px; font-size: 11px; }
  .studio-banner { grid-template-columns: auto 1fr; gap: 15px; padding: 18px; }
  .studio-tag { display: none; }
  .studio-banner strong { font-size: 13px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 45px 70px 1fr; grid-template-rows: auto auto; gap: 4px 16px; align-items: center; min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .process-step:last-child { border-bottom: 0; }
  .step-number { grid-row: 1 / 3; }
  .step-icon { grid-row: 1 / 3; width: 58px; height: 58px; margin: 0; font-size: 20px; }
  .process-step h3 { align-self: end; margin: 0; font-size: 25px; }
  .process-step p { align-self: start; font-size: 11px; }

  .work-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .work-card,
  .work-card:nth-child(n + 4) { grid-column: span 1; aspect-ratio: 9 / 14; }
  .work-card:first-child { grid-column: 1 / 3; aspect-ratio: 4 / 5; }
  .work-label { top: 14px; left: 14px; }
  .work-card strong { right: 14px; bottom: 14px; left: 14px; font-size: 18px; }
  .work-play { width: 54px; height: 54px; }
  .portfolio-note { text-align: left; }

  .cta-section, .cta-inner { min-height: 560px; }
  .cta-inner h2 { font-size: clamp(86px, 27vw, 150px); }
  .cta-section::before { top: -10%; left: -35%; width: 160vw; }
  .cta-section::after { top: 8%; left: -2%; width: 100vw; }

  .footer { padding-block: 52px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; font-size: 62px; }
  .footer-meta { grid-column: 1 / 3; align-items: start; margin-top: 22px; }

  .order-dialog { overflow-y: auto; }
  .dialog-shell { display: block; width: calc(100vw - 28px); padding: 78px 0 40px; }
  .dialog-intro { margin-bottom: 42px; }
  .dialog-intro h2 { font-size: 58px; }
  .dialog-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .choice-row { gap: 5px; }
  .video-placeholder { width: calc(100vw - 28px); height: calc(100svh - 28px); }
}

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

  .reveal { opacity: 1; transform: none; }
  .hero-title span,
  .step-icon { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
