:root {
  --ink: #0e1016;
  --black: #05070b;
  --panel: #121722;
  --blue: #2459ff;
  --cyan: #18c8ff;
  --lime: #c43c30;
  --pink: #ff477e;
  --paper: #f6f7fb;
  --white: #ffffff;
  --muted: #747b8d;
  --line: rgba(14, 16, 22, 0.12);
  --shadow: 0 30px 90px rgba(5, 7, 11, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8), transparent 8%),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.55) 0 1px, transparent 1px 8px);
  mix-blend-mode: multiply;
  animation: textureDrift 10s linear infinite;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1200px);
  min-height: 70px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.55);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: top 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(5, 7, 11, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  width: 214px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand img,
.site-footer img {
  width: 100%;
  height: auto;
}

.brand img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.48));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: 0.82;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.header-cta,
.button.primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(196, 60, 48, 0.24);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.ghost.dark {
  border-color: var(--line);
  color: var(--ink);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 89, 255, 0.44), transparent 26%),
    radial-gradient(circle at 18% 76%, rgba(255, 71, 126, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.82), rgba(5, 7, 11, 0.48), rgba(5, 7, 11, 0.28));
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.hero-media video {
  z-index: 1;
  opacity: 0.96;
  pointer-events: none;
}

.hero-media img {
  z-index: 0;
  opacity: 0.18;
  filter: saturate(1.22) contrast(1.08);
  transform: scale(1.08);
  animation: heroFloat 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: end;
  width: min(1200px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 170px 0 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.2rem, 10vw, 9.7rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 5.8vw, 6.2rem);
}

.hero-copy p {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card div {
  padding: 24px;
  background: rgba(5, 7, 11, 0.56);
}

.hero-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--lime);
  text-shadow: 0 0 28px rgba(196, 60, 48, 0.2);
}

.hero-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 110px max(20px, calc((100vw - 1200px) / 2));
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 5vw, 76px);
  padding-top: 82px;
  padding-bottom: 42px;
  background: #fff;
  color: var(--ink);
  content-visibility: visible;
}

.metric {
  position: relative;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.metric strong {
  display: block;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 2.2px var(--lime);
  text-shadow: 0 0 30px rgba(196, 60, 48, 0.16);
}

.metric > span {
  display: block;
  max-width: 190px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 890px;
  margin-bottom: 46px;
}

.studios {
  padding-top: 34px;
  background: #fff;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.studio-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(36, 89, 255, 0.1), transparent 42%),
    var(--paper);
  box-shadow: var(--shadow);
}

.studio-panel-alt {
  background:
    linear-gradient(145deg, rgba(255, 71, 126, 0.12), transparent 42%),
    #fff;
}

.studio-panel::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 200, 255, 0.32), transparent 64%);
  content: "";
}

.studio-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.studio-topline img {
  width: 190px;
  max-height: 86px;
  object-fit: contain;
}

.studio-panel-alt .studio-topline img {
  width: 78px;
}

.studio-topline span {
  color: var(--blue);
  font-size: 2.3rem;
  font-weight: 950;
}

.studio-panel h3 {
  margin: 82px 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.studio-panel p,
.work-intro p,
.reel-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.studio-panel ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.studio-panel li {
  position: relative;
  padding-left: 22px;
  font-weight: 850;
}

.studio-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.best-for {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.reel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  background: var(--black);
  color: #fff;
}

.reel-copy {
  max-width: 760px;
}

.reel-copy h2 {
  margin-bottom: 0;
}

.reel-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48);
  aspect-ratio: 16 / 9;
}

.work-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 24px;
  align-items: start;
}

.work-video-card {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.video-shell.small {
  min-height: 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.work-video-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.video-shell img,
.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-shell video {
  display: block;
  object-fit: cover;
}


.video-shell img {
  object-fit: cover;
  opacity: 0.76;
  transform: scale(1.03);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.video-shell:hover img {
  opacity: 0.94;
  transform: scale(1.07);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.video-play::after {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(196, 60, 48, 0.45);
  border-radius: inherit;
  content: "";
  animation: pulse 1.7s ease-out infinite;
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid var(--ink);
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(5, 7, 11, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card div {
  padding: 26px;
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.work {
  overflow: hidden;
  background: #fff;
}

.work-intro {
  max-width: 820px;
}

.logo-cloud {
  position: relative;
  overflow: hidden;
  margin: 44px 0 38px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(36, 89, 255, 0.09), transparent 24%),
    radial-gradient(circle at 78% 50%, rgba(196, 60, 48, 0.12), transparent 22%),
    linear-gradient(90deg, #fff, rgba(246, 247, 251, 0.82), #fff),
    var(--paper);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logoFlow 34s linear infinite;
}

.logo-card {
  position: relative;
  display: inline-flex;
  width: 238px;
  height: 104px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 1px solid rgba(14, 16, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 251, 0.76)),
    #fff;
  box-shadow: 0 18px 48px rgba(5, 7, 11, 0.08);
}

.logo-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 20%, rgba(255, 255, 255, 0.72) 46%, transparent 68%);
  content: "";
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.25s ease, transform 0.55s ease;
}

.logo-card:hover::after {
  opacity: 1;
  transform: translateX(40%);
}

.logo-card img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: contrast(1.08) saturate(1.05);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.portfolio-card:hover img {
  opacity: 0.95;
  transform: scale(1.07);
}

.portfolio-card span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1;
}

.proof {
  background: var(--black);
  color: #fff;
}

.testimonial-marquee {
  display: grid;
  gap: 18px;
  overflow: hidden;
  margin-right: min(-20px, calc((100vw - 1200px) / -2));
  margin-left: min(-20px, calc((100vw - 1200px) / -2));
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.testimonial-row {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: testimonialFlow 30s ease-in-out infinite alternate;
}

.testimonial-row.reverse {
  animation-name: testimonialFlowReverse;
  animation-duration: 34s;
}

.google-review-row {
  align-items: stretch;
}

.google-review {
  flex: 0 0 330px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(196, 60, 48, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(196, 60, 48, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.google-review-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.google-review-head b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 950;
}

.google-review-head span {
  color: #fff;
  font-weight: 950;
}

.google-review .stars {
  margin: 18px 0 12px;
  color: #f7b500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.google-review p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.testimonial {
  flex: 0 0 380px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonial:hover {
  border-color: rgba(196, 60, 48, 0.32);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial h3 {
  margin: 24px 0 12px;
  color: var(--lime);
  font-size: 1.35rem;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial span {
  color: #fff;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: start;
  background:
    radial-gradient(circle at 90% 12%, rgba(36, 89, 255, 0.13), transparent 24%),
    #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(14, 16, 22, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(36, 89, 255, 0.24);
  border-color: var(--blue);
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.4em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  display: grid;
  grid-template-columns: 214px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px max(20px, calc((100vw - 1200px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.site-footer img {
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(5, 7, 11, 0.08));
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--ink);
  font-weight: 900;
}

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

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

@keyframes heroFloat {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(2%, -1%, 0);
  }
}

@keyframes pulse {
  from {
    opacity: 0.7;
    transform: scale(0.88);
  }
  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

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

@keyframes testimonialFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-18%);
  }
}

@keyframes testimonialFlowReverse {
  from {
    transform: translateX(-26%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes textureDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 30px, 72px 72px;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    z-index: 100;
    display: grid;
    gap: 7px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  body.menu-open .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 140px 30px 40px;
    flex-direction: column;
    justify-content: start;
    gap: 28px;
    background: rgba(5, 7, 11, 0.98);
    font-size: 1.32rem;
  }

  .hero-grid,
  .metrics,
  .studio-grid,
  .reel,
  .work-video-grid,
  .service-grid,
  .portfolio-grid,
  .testimonial-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
    padding-bottom: 60px;
  }

  .metrics {
    gap: 30px;
  }

  .testimonial {
    flex-basis: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .work-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand {
    width: 156px;
  }

  h1 {
    font-size: 4.05rem;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .studios {
    padding-top: 24px;
  }

  .metrics {
    padding-top: 58px;
    padding-bottom: 30px;
  }

  .metric {
    padding: 0;
  }

  .metric strong {
    font-size: 4.6rem;
  }

  .hero-grid {
    width: min(100% - 28px, 1200px);
    padding-top: 136px;
  }

  .studio-panel {
    min-height: 620px;
    padding: 24px;
  }

  .best-for {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .service-card img {
    height: 220px;
  }

  .portfolio-card {
    min-height: 330px;
  }

  .testimonial {
    flex-basis: 300px;
    padding: 22px;
  }

  .logo-card {
    width: 190px;
    height: 86px;
    padding: 14px 18px;
  }

  .logo-card img {
    max-height: 58px;
  }

  .video-shell.small {
    min-height: 0;
  }

  .video-play {
    width: 72px;
    height: 72px;
  }
}
