@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bigshouldersdisplay/v24/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1cwtDuHpM.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; */
}

:root {
  --red: #ff4a32;
  --black: #090b0c;
  --ink: #111315;
  --paper: #f0eee8;
  --line: rgba(255, 255, 255, .14);
  --muted: #a5a8aa
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: auto
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .16;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E")
}

.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference
}

.section-dark {
  background: #090b0c
}

.section-light {
  background: var(--paper);
  color: var(--ink)
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.8vw;
  transition: background .3s ease, backdrop-filter .3s ease
}

.site-header.is-scrolled {
  /* background: rgba(8, 10, 11, .68); */
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px)
}

.brand img {
  width: 100px;
  height: auto;
  max-height: 54px;
}

.desktop-nav {
  display: flex;
  gap: 32px
}

.desktop-nav a,
.site-header button {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em
}

.button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 17px 26px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease
}

.button:hover {
  background: #ff624e
}

.button-small {
  padding: 14px 24px
}

.button-large {
  padding: 20px 36px;
  font-size: 15px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 10px
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red)
}

.eyebrow.dark {
  color: #242628
}

.section-heading {
  padding: 100px 5vw 58px
}

.section-heading h2,
.social-title h2,
.cta h2 {
  margin: 18px 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.035em
}

.section-heading h2 em,
.social-title h2 em,
.cta h2 em {
  color: var(--red);
  font-style: italic
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.5fr .6fr;
  align-items: end;
  gap: 40px
}

.section-heading.split>p {
  color: #aeb1b3;
  line-height: 1.7;
  max-width: 390px
}

.section-light .section-heading.split>p {
  color: #54585a
}

.hero {
  height: 100svh;
  min-height: 760px;
  position: relative;
  overflow: hidden
}

.hero-backdrops,
.hero-bg {
  position: absolute;
  inset: 0
}

.hero-bg {
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .9s ease
}

.hero-bg.active {
  opacity: 1
}

.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 8, .97) 0%, rgba(5, 7, 8, .72) 38%, rgba(5, 7, 8, .18) 68%, rgba(5, 7, 8, .78) 100%), linear-gradient(0deg, rgba(5, 7, 8, .92), transparent 45%)
}

.hero-rays {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 100deg at 68% 45%, transparent, rgba(255, 255, 255, .11), transparent 12%, transparent 100%);
  filter: blur(18px);
  animation: rays 12s linear infinite
}

.particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .8) 0 1px, transparent 1.5px);
  background-size: 120px 120px;
  opacity: .18;
  animation: drift 18s linear infinite
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  align-items: center;
  padding: 120px 5vw 55px
}

.hero-copy {
  max-width: 830px
}

.hero-copy h1 {
  margin: 22px 0 20px;
  font-family: 'Barlow Condensed';
  font-weight: 900;
  line-height: .77;
  text-transform: uppercase;
  letter-spacing: -.05em
}

.hero-copy h1 span {
  display: block;
  font-size: clamp(62px, 7.5vw, 124px)
}

.hero-copy h1 em {
  display: block;
  color: var(--red);
  font-size: clamp(98px, 14vw, 220px);
  font-style: normal;
  margin-left: -.02em;
  text-shadow: 0 10px 40px rgba(255, 74, 50, .22)
}

.hero-copy>p {
  max-width: 560px;
  color: #d5d7d8;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px
}

.watch-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 12px
}

.watch-link i {
  font-style: normal;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center
}

.hero-campaigns {
  align-self: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  width: min(320px, 100%)
}

.campaign-option {
  appearance: none;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 20px 0;
  background: none;
  color: white;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 34px 1fr;
  transition: padding .3s ease, background .3s ease
}

.campaign-option small {
  color: var(--red)
}

.campaign-option strong {
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-size: 23px
}

.campaign-option span {
  grid-column: 2;
  color: #8f9395;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px
}

.campaign-option.active {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 74, 50, .14), transparent)
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12)
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--red);
  transition: transform .8s ease;
  transform-origin: left
}

/* ========================================
   INTERACTIVE SERVICES SHOWCASE
======================================== */

.services-showcase {
  background: #f1efe9;
  color: #111315;
  padding: 110px 5vw 120px;
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 50px;
}

.services-heading h2 {
  margin: 18px 0 0;
  font-family: "Hock", "Barlow Condensed", sans-serif;
  font-size: clamp(51px, 7vw, 110px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.services-heading h2 em {
  color: var(--red);
  font-style: italic;
}

.services-interactive {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  gap: 45px;
  align-items: stretch;
  width: 100%;
}

.services-list {
  border-top: 1px solid rgba(17, 19, 21, .22);
}

.service-item {
  width: 100%;
  min-height: 118px;
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  gap: 18px;
  padding: 22px 12px;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 21, .22);
  background: transparent;
  color: #111315;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color .4s ease,
    padding .4s ease,
    background .4s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111315;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  z-index: 0;
}

.service-item>span {
  position: relative;
  z-index: 1;
}

.service-item:hover,
.service-item.active {
  color: #fff;
  padding-left: 24px;
}

.service-item:hover::before,
.service-item.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-index {
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-copy {
  display: grid;
  gap: 7px;
}

.service-copy strong {
  font-family: "Hock", "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 2.7vw, 48px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0px;
  /* letter-spacing: -.035em; */
  text-transform: uppercase;
}

.service-copy small {
  max-width: 470px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #65686a;
  transition: color .35s ease;
}

.service-item:hover .service-copy small,
.service-item.active .service-copy small {
  color: #bec1c2;
}

.service-arrow {
  color: var(--red);
  font-size: 22px;
  transform: translateX(-8px);
  opacity: 0;
  transition:
    transform .35s ease,
    opacity .35s ease;
}

.service-item:hover .service-arrow,
.service-item.active .service-arrow {
  transform: translateX(0);
  opacity: 1;
}

.service-visual {
  min-height: 710px;
  position: sticky;
  top: 95px;
  overflow: hidden;
  background: #0b0d0f;
}

.service-visual-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-visual-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition:
    opacity .35s ease,
    transform .8s cubic-bezier(.2, .8, .2, 1);
}

.service-visual.changing .service-visual-image img {
  opacity: 0;
  transform: scale(1.12);
}

.service-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 7, 8, .08) 20%,
      rgba(5, 7, 8, .32) 60%,
      rgba(5, 7, 8, .94) 100%);
  pointer-events: none;
}

.service-visual-label {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  z-index: 2;
}

.service-visual-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-visual-label strong {
  display: block;
  max-width: 80%;
  color: #fff;
  font-family: "Hock", "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5vw, 84px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: 0px;
  /* letter-spacing: -.04em; */
  text-transform: uppercase;
}

.service-visual-button {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease;
}

.service-visual-button:hover {
  transform: translateY(-4px);
}

@media(max-width:1000px) {

  .services-interactive {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 580px;
    position: relative;
    top: auto;
    grid-row: 1;
  }

}

@media(max-width:680px) {

  .services-showcase {
    padding: 80px 20px;
  }

  .services-heading {
    display: block;
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: 18vw;
    margin-bottom: 20px;
  }

  .service-visual {
    min-height: 440px;
  }

  .service-item {
    min-height: 105px;
    grid-template-columns: 34px 1fr 22px;
    gap: 10px;
    padding: 18px 8px;
  }

  .service-copy strong {
    font-size: 34px;
  }

  .service-copy small {
    font-size: 12px;
  }

  .service-visual-label {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .service-visual-label strong {
    font-size: 52px;
  }

  .service-visual-button {
    top: 18px;
    right: 18px;
    padding: 13px 16px;
    font-size: 10px;
  }

}

.service-scene {
  min-height: 220px;
  display: grid;
  grid-template-columns: 60px 1fr 340px;
  gap: 40px;
  align-items: center;
  border-top: 1px solid #bfc0bc;
  position: relative;
  overflow: hidden;
  transition: color .35s ease, background .35s ease, padding .35s ease
}

.service-scene:last-child {
  border-bottom: 1px solid #bfc0bc
}

.service-scene:hover {
  background: #101214;
  color: #fff;
  padding: 0 28px
}

.service-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 800
}

.service-scene h3 {
  margin: 0 0 10px;
  font-family: 'Barlow Condensed';
  font-size: 48px;
  text-transform: uppercase
}

.service-scene p {
  max-width: 620px;
  color: #5d6163;
  line-height: 1.6
}

.service-scene:hover p {
  color: #c4c6c7
}

.service-demo {
  height: 145px;
  border: 1px solid currentColor;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden
}

.video-demo b {
  font-family: 'Barlow Condensed';
  font-size: 34px
}

.video-demo i {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 9px
}

.rec-dot {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%
}

.type-demo span {
  position: absolute;
  font-family: 'Barlow Condensed';
  font-size: 46px;
  font-weight: 900;
  transition: transform .45s ease
}

.type-demo span:nth-child(1) {
  opacity: .2;
  transform: translateY(-24px)
}

.type-demo span:nth-child(3) {
  opacity: .2;
  transform: translateY(24px)
}

.brand-scene:hover .type-demo span:nth-child(1) {
  transform: translate(-30px, -36px)
}

.brand-scene:hover .type-demo span:nth-child(2) {
  transform: scale(1.35);
  color: var(--red)
}

.brand-scene:hover .type-demo span:nth-child(3) {
  transform: translate(30px, 36px)
}

.device-demo {
  perspective: 700px
}

.laptop {
  width: 180px;
  height: 100px;
  border: 2px solid currentColor;
  transform: rotateY(-14deg);
  transition: .5s
}

.laptop span,
.phone span {
  display: block;
  margin: 10px;
  height: 70%;
  background: linear-gradient(135deg, var(--red), #1c2933)
}

.phone {
  position: absolute;
  width: 54px;
  height: 105px;
  border: 2px solid currentColor;
  right: 45px;
  bottom: 16px;
  transform: rotate(6deg);
  transition: .5s
}

.web-scene:hover .laptop {
  transform: rotateY(10deg) translateX(-10px)
}

.web-scene:hover .phone {
  transform: rotate(-6deg) translateY(-8px)
}

.social-demo span {
  position: absolute;
  border: 1px solid currentColor;
  padding: 10px 14px;
  font-weight: 800;
  transition: .45s
}

.social-demo span:nth-child(1) {
  transform: translate(-70px, -24px) rotate(-8deg)
}

.social-demo span:nth-child(2) {
  transform: translate(50px, 12px) rotate(6deg)
}

.social-demo span:nth-child(3) {
  transform: translate(-10px, 42px) rotate(-2deg)
}

.social-scene:hover .social-demo span {
  transform: translate(0, 0) rotate(0)
}

.camera-demo span {
  font-size: 48px
}

.camera-demo i {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0
}

.coverage-scene:hover .camera-demo i {
  animation: flash .55s ease
}

.target-demo span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em
}

.target-demo b {
  font-size: 42px;
  color: var(--red);
  transition: .4s
}

.strategy-scene:hover .target-demo b {
  transform: translate(45px, -25px)
}

.work {
  padding-bottom: 110px
}

.case-track {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  padding: 0 4vw
}

.case-card {
  height: 630px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #171a1c
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .4s
}

.case-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.2)
}

.case-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .95));
  transform: translateY(0);
  transition: .45s
}

.case-card:hover .case-overlay {
  transform: translateY(0)
}

.case-overlay h3 {
  font-family: 'Barlow Condensed';
  font-size: 46px;
  line-height: .9;
  margin: 10px 0
}

.case-overlay small {
  color: #d4d5d6;
  text-transform: uppercase;
  letter-spacing: .12em
}

.case-overlay div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.case-overlay span {
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 7px 10px;
  font-size: 10px;
  text-transform: uppercase
}

.social {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 45px;
  padding: 110px 4vw;
  align-items: center
}

.social-title p:last-child {
  color: #aeb1b3;
  line-height: 1.6;
  max-width: 430px
}

.content-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center
}

.poster {
  height: 440px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  margin-left: -20px;
  transition: transform .45s ease, z-index .1s;
  transform-origin: center
}

.poster:nth-child(2) {
  height: 520px
}

.poster:nth-child(3) {
  height: 450px
}

.poster:nth-child(4) {
  height: 510px
}

.poster:hover {
  transform: translateY(-22px) rotate(1.2deg) scale(1.03);
  z-index: 4
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.poster:hover img {
  transform: scale(1.08)
}

.poster:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(5, 7, 8, .92))
}

.poster div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 25px
}

.poster small {
  color: var(--red);
  font-weight: 800
}

.poster strong {
  display: block;
  font-family: 'Barlow Condensed';
  font-size: 35px;
  line-height: .9;
  margin-top: 8px
}

.transformation {
  padding-bottom: 110px
}

.compare {
  height: 600px;
  margin: 0 5vw;
  position: relative;
  overflow: hidden;
  background: #ddd;
  touch-action: none
}

.compare-before,
.compare-after {
  position: absolute;
  inset: 0
}

.compare-before img,
.compare-after img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.compare-before span,
.compare-after span {
  position: absolute;
  top: 24px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em
}

.compare-before span {
  left: 24px;
  color: #111
}

.compare-after span {
  right: 24px;
  color: var(--red)
}

.compare-after {
  clip-path: inset(0 0 0 50%)
}

.compare-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  border: 0;
  background: var(--red);
  padding: 0;
  cursor: ew-resize
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(255, 74, 50, .45)
}

.stats {
  padding-bottom: 110px
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 5vw
}

.stat-cards article {
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .35s, border-color .35s
}

.stat-cards article:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--red);
  transition: height .35s;
  z-index: 0
}

.stat-cards article:hover {
  transform: translateY(-10px);
  border-color: var(--red)
}

.stat-cards article:hover:before {
  height: 8px
}

.stat-cards small,
.stat-cards strong,
.stat-cards span {
  position: relative
}

.stat-cards small {
  color: var(--red)
}

.stat-cards strong {
  font-family: 'Barlow Condensed';
  font-size: clamp(72px, 8vw, 124px);
  line-height: .8
}

.stat-cards span {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
  color: #b6b8b9
}

.packages {
  padding-bottom: 110px
}

.billing-toggle {
  border: 1px solid #bbb;
  padding: 5px;
  display: flex;
  align-self: end
}

.billing-toggle button {
  border: 0;
  background: transparent;
  padding: 12px 16px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer
}

.billing-toggle button.active {
  background: var(--ink);
  color: #fff
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 18px;
  padding: 0 5vw
}

.package-card {
  border: 1px solid #bbb;
  padding: 28px;
  background: #f7f5ef;
  display: flex;
  flex-direction: column;
  min-height: 760px;
  transition: transform .35s, box-shadow .35s
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.package-card.featured {
  background: #111315;
  color: #fff;
  border-color: #111315;
  position: relative
}

.popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  padding: 10px 14px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em
}

.package-card small {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .12em
}

.package-card h3 {
  font-family: 'Barlow Condensed';
  font-size: 68px;
  text-transform: uppercase;
  margin: 8px 0
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 0
}

.price sup {
  font-size: 20px;
  margin-top: 12px
}

.price b {
  font-family: 'Barlow Condensed';
  font-size: 84px;
  line-height: .8
}

.price span {
  align-self: flex-end;
  margin: 0 0 8px 8px
}

.package-card em {
  font-size: 12px;
  color: #777
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 11px;
  flex: 1
}

.package-card li {
  font-size: 13px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative
}

.package-card li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900
}

.addon {
  font-size: 11px;
  color: #777
}

.featured .addon,
.featured em {
  color: #b6b8b9
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6vw;
  align-items: center;
  padding: 110px 5vw
}

.testimonial-media {
  height: 600px;
  position: relative;
  overflow: hidden
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.testimonial-media button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 0;
  background: var(--red);
  color: white;
  font-size: 22px
}

.testimonial blockquote {
  font-family: 'Barlow Condensed';
  font-size: clamp(54px, 6vw, 92px);
  line-height: .92;
  margin: 28px 0
}

.testimonial>div:last-child>p:last-child {
  color: #aaa
}

.cta {
  text-align: center;
  padding: 160px 5vw
}

.cta h2 {
  font-size: clamp(90px, 14vw, 220px)
}

.cta .button {
  margin-top: 45px
}

footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 48px 5vw 24px;
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 12px;
  color: #999
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

footer img {
  width: 80px;
  height: auto;
  max-height: 43px;
}

footer div {
  display: flex;
  gap: 20px
}

footer a,
footer button {
  color: #fff;
  background: none;
  border: 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 10px;
  cursor: pointer;
  text-decoration: none
}

.contact-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  height: 100%;
  width: min(600px, 100%);
  background: #0d0f11;
  padding: 80px 55px 45px;
  transform: translateX(105%);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  overflow: auto
}

.contact-drawer.open {
  transform: translateX(0)
}

.contact-drawer h2 {
  font-family: 'Barlow Condensed';
  font-size: 92px;
  line-height: .8;
  margin: 25px 0 40px
}

.drawer-close {
  position: absolute;
  right: 24px;
  top: 20px;
  background: none;
  border: 0;
  color: white;
  font-size: 38px;
  cursor: pointer
}

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

.contact-drawer label {
  display: grid;
  gap: 7px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em
}

.contact-drawer input,
.contact-drawer select,
.contact-drawer textarea {
  width: 100%;
  background: #171a1c;
  color: #fff;
  border: 1px solid #333;
  padding: 14px;
  font: inherit
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .64);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: .4s
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto
}

@keyframes rays {
  to {
    transform: rotate(360deg)
  }
}

@keyframes drift {
  to {
    background-position: 120px 240px
  }
}

@keyframes flash {

  0%,
  100% {
    opacity: 0
  }

  30% {
    opacity: .9
  }
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-social>a {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3f3f3f80;
  transition: transform .3s ease-in-out;
}

.footer-social>a:hover {
  transform: scale(1.1);
}

.footer-social>a:hover>i {
  color: white;
}

.footer-social>a:nth-last-of-type(4):hover {
  background-image: linear-gradient(45deg, #f9d86b 0%, #ed634a 50.52%, #ba46a5 100%);
}

.footer-social>a:nth-last-of-type(3):hover {
  background-color: #1da1f2;
}

.footer-social>a:nth-last-of-type(2):hover {
  background-color: #ffffff;
}

.footer-social>a:nth-last-of-type(2):hover >i {
  color: #e71212;
}

.footer-social>a:nth-last-of-type(1):hover {
  background-color: #626262;
}

.footer-social>a>i {
  transform: translateY(0px);
}

@media(max-width:1000px) {
  .desktop-nav {
    display: none
  }

  .hero-content {
    grid-template-columns: 1fr
  }

  .hero-campaigns {
    position: absolute;
    right: 4vw;
    bottom: 50px;
    width: 250px
  }

  .service-scene {
    grid-template-columns: 45px 1fr
  }

  .service-demo {
    grid-column: 2
  }

  .case-track {
    grid-template-columns: 1fr
  }

  .case-card {
    height: 560px
  }

  .social {
    grid-template-columns: 1fr
  }

  .content-wall {
    margin-left: 20px
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr
  }

  .package-grid {
    grid-template-columns: 1fr
  }

  .package-card {
    min-height: auto
  }

  .testimonial {
    grid-template-columns: 1fr
  }

  .testimonial-media {
    height: 500px
  }

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

@media(max-width:680px) {
  .site-header {
    height: 68px
  }

  /* .brand img {
    width: 120px
  } */

  .hero {
    min-height: 850px
  }

  .hero-content {
    padding-top: 110px;
    align-items: start
  }

  .hero-copy h1 em {
    font-size: 27vw
  }

  .hero-copy h1 span {
    font-size: 16vw
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column
  }

  .hero-campaigns {
    left: 5vw;
    right: 5vw;
    bottom: 20px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .campaign-option {
    padding: 12px
  }

  .campaign-option strong {
    font-size: 18px
  }

  .section-heading {
    padding: 80px 5vw 40px
  }

  .section-heading.split {
    grid-template-columns: 1fr
  }

  .service-scene {
    padding: 26px 0;
    grid-template-columns: 34px 1fr
  }

  .service-scene:hover {
    padding: 26px 16px
  }

  .service-scene h3 {
    font-size: 38px
  }

  .service-demo {
    grid-column: 1/3
  }

  .case-card {
    height: 500px
  }

  .content-wall {
    grid-template-columns: 1fr 1fr;
    margin: 0
  }

  .poster,
  .poster:nth-child(n) {
    height: 360px;
    margin: -1px
  }

  .compare {
    height: 420px
  }

  .stat-cards {
    grid-template-columns: 1fr
  }

  .package-grid {
    padding: 0 4vw
  }

  .testimonial {
    padding: 80px 5vw
  }

  .testimonial-media {
    height: 420px
  }

  .testimonial blockquote {
    font-size: 52px
  }

  .cta {
    padding: 100px 5vw
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start
  }

  .contact-drawer {
    padding: 72px 24px 35px
  }

  .contact-drawer h2 {
    font-size: 68px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .cursor {
    display: none
  }
}

/* Responsive rebuild */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #0b0d0f;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: .3s
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg)
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  z-index: 75;
  inset: 68px 0 auto;
  background: #090b0d;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  padding: 26px 5vw 32px;
  display: grid;
  gap: 20px;
  transform: translateY(-120%);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1)
}

.mobile-menu.open {
  transform: translateY(0)
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Barlow Condensed';
  font-size: 30px;
  font-weight: 800
}

.mobile-menu .button {
  justify-self: start
}

@media(max-width:820px) {
  body {
    overflow-x: hidden
  }

  .site-header {
    height: 68px;
    padding: 0 18px
  }

  .desktop-nav {
    display: none
  }

  .site-header>.button {
    display: none
  }

  .header-actions>.button {
    display: none
  }

  .menu-toggle {
    display: flex
  }

  .brand img {
    /* width: 150px */
  }

  .mobile-menu {
    display: grid
  }

  .hero {
    min-height: 760px;
    height: auto
  }

  .hero-content {
    display: block;
    padding: 105px 20px 175px
  }

  .hero-copy {
    max-width: 100%
  }

  .hero-copy h1 {
    max-width: 100%
  }

  .hero-copy h1 span {
    font-size: clamp(54px, 16vw, 92px);
    line-height: .86
  }

  .hero-copy h1 em {
    font-size: clamp(74px, 23vw, 138px);
    line-height: .72;
    margin-left: -2px
  }

  .hero-copy>p {
    max-width: 90%;
    font-size: 15px
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
  }

  .hero-actions .button {
    padding: 14px 18px
  }

  .watch-link {
    font-size: 11px
  }

  .hero-campaigns {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .campaign-option {
    min-height: 70px;
    padding: 10px 12px;
    background: rgba(6, 8, 10, .72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .16)
  }

  .campaign-option small {
    font-size: 8px
  }

  .campaign-option strong {
    font-size: 18px
  }

  .campaign-option span {
    font-size: 9px
  }

  .hero-bg {
    background-position: 64% center
  }

  .hero-progress {
    left: 18px;
    right: 18px
  }

  .section-heading {
    padding: 72px 20px 34px
  }

  .section-heading h2,
  .social-title h2 {
    font-size: clamp(54px, 16vw, 86px)
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .section-heading.split>p {
    max-width: 100%
  }

  .service-scenes {
    padding: 0 20px
  }

  .service-scene {
    grid-template-columns: 34px 1fr;
    padding: 24px 0;
    gap: 12px
  }

  .service-scene:hover {
    padding: 24px 0;
    background: transparent
  }

  .service-scene h3 {
    font-size: 38px
  }

  .service-scene p {
    font-size: 14px
  }

  .service-demo {
    grid-column: 1/3;
    height: 180px;
    margin-top: 8px
  }

  .service-number {
    font-size: 11px
  }

  .case-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 20px 12px;
    -webkit-overflow-scrolling: touch
  }

  .case-track::-webkit-scrollbar {
    display: none
  }

  .case-card {
    flex: 0 0 84vw;
    height: 520px;
    scroll-snap-align: start
  }

  .case-overlay {
    transform: none;
    padding: 22px
  }

  .case-overlay h3 {
    font-size: 38px
  }

  .social {
    display: block;
    padding: 82px 20px
  }

  .social-title {
    margin-bottom: 36px
  }

  .content-wall {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin: 0;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory
  }

  .content-wall::-webkit-scrollbar {
    display: none
  }

  .poster,
  .poster:nth-child(n) {
    flex: 0 0 72vw;
    height: 470px;
    margin: 0;
    scroll-snap-align: center;
    transform: translate(10px, 10px) !important;
  }

  .poster:hover {
    transform: none
  }

  .poster strong {
    font-size: 32px
  }

  .compare {
    height: 480px;
    margin: 0 20px
  }

  .compare-before span,
  .compare-after span {
    top: 16px;
    font-size: 8px
  }

  .compare-before span {
    left: 14px
  }

  .compare-after span {
    right: 14px
  }

  .compare-handle span {
    width: 44px;
    height: 44px
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    gap: 12px
  }

  .stat-cards article {
    min-height: 200px;
    padding: 18px
  }

  .stat-cards strong {
    font-size: 64px
  }

  .stat-cards span {
    font-size: 9px
  }

  .billing-toggle {
    justify-self: start
  }

  .package-grid {
    grid-template-columns: 1fr;
    padding: 0 20px
  }

  .package-card {
    min-height: auto;
    padding: 24px
  }

  .package-card h3 {
    font-size: 58px
  }

  .price b {
    font-size: 72px
  }

  .testimonial {
    grid-template-columns: 1fr;
    padding: 80px 20px
  }

  .testimonial-media {
    height: 420px
  }

  .testimonial blockquote {
    font-size: 52px
  }

  .cta {
    padding: 100px 20px
  }

  .cta h2 {
    font-size: clamp(82px, 24vw, 140px)
  }

  footer {
    grid-template-columns: 1fr;
    padding: 34px 20px;
    gap: 18px
  }

  .contact-drawer {
    padding: 72px 22px 34px
  }

  .contact-drawer h2 {
    font-size: 66px
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .hero {
    min-height: 720px
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 190px
  }

  .eyebrow {
    font-size: 8px
  }

  .hero-copy h1 span {
    font-size: 14vw
  }

  .hero-copy h1 em {
    font-size: 22vw
  }

  .hero-copy>p {
    font-size: 14px
  }

  .hero-actions {
    gap: 10px
  }

  .hero-actions .button {
    font-size: 10px
  }

  .watch-link i {
    width: 38px;
    height: 38px
  }

  .hero-campaigns {
    grid-template-columns: 1fr 1fr
  }

  .campaign-option {
    min-height: 66px
  }

  .campaign-option span {
    display: none
  }

  .section-heading h2,
  .social-title h2 {
    font-size: 15vw
  }

  .service-demo {
    height: 150px
  }

  .case-card {
    flex-basis: 88vw;
    height: 470px
  }

  .poster,
  .poster:nth-child(n) {
    flex-basis: 82vw;
    height: 450px
  }

  .compare {
    height: 390px
  }

  .stat-cards {
    grid-template-columns: 1fr
  }

  .stat-cards article {
    min-height: 170px
  }

  .testimonial-media {
    height: 360px
  }

  .testimonial blockquote {
    font-size: 46px
  }

  .cta h2 {
    font-size: 23vw
  }

  .button-large {
    padding: 16px 22px
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
  }
}

/* Interactive package selection */
.package-card {
  position: relative;
  isolation: isolate;
  cursor: pointer;
  overflow: hidden;
  color: var(--ink);
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, box-shadow .45s ease, color .35s ease, background-color .35s ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111315;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .52s cubic-bezier(.2, .8, .2, 1);
}

.package-card::after {
  content: "";
  position: absolute;
  inset: -45% -20%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(255, 74, 50, .24), transparent 44%);
  opacity: 0;
  transform: translateY(20%) scale(.7);
  transition: opacity .45s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

.package-card.featured {
  background: #f7f5ef;
  color: var(--ink);
  border-color: #bbb
}

.package-card.featured .addon,
.package-card.featured em {
  color: #777
}

.package-card:is(:hover, :focus-visible, .is-selected) {
  color: #fff;
  border-color: #24272a;
  transform: translateY(-10px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, .22), 0 0 0 1px rgba(255, 74, 50, .16)
}

.package-card:is(:hover, :focus-visible, .is-selected)::before {
  transform: scaleY(1)
}

.package-card:is(:hover, :focus-visible, .is-selected)::after {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.package-card:is(:hover, :focus-visible, .is-selected) em,
.package-card:is(:hover, :focus-visible, .is-selected) .addon {
  color: #b8bbbd
}

.package-card:is(:hover, :focus-visible, .is-selected) li {
  color: #f4f4f2
}

.package-card:is(:hover, :focus-visible, .is-selected) .price,
.package-card:is(:hover, :focus-visible, .is-selected) h3 {
  color: #fff
}

.package-card .button {
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease
}

.package-card:is(:hover, :focus-visible, .is-selected) .button {
  box-shadow: 0 12px 30px rgba(255, 74, 50, .28)
}

.package-card.is-selected .button {
  transform: translateY(-2px)
}

.package-card .popular {
  z-index: 3
}

.package-card.is-selected .popular {
  animation: popularPulse 2.4s ease-in-out infinite
}

.package-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px
}

.package-card .selection-label {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -14px);
  opacity: 0;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: .35s ease
}

.package-card.is-selected .selection-label {
  opacity: 1;
  transform: translate(-50%, 0)
}

@keyframes popularPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 74, 50, 0)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 74, 50, .08)
  }
}

@media (hover:none) {
  .package-card:hover {
    transform: none;
    box-shadow: none;
    color: var(--ink)
  }

  .package-card:hover::before {
    transform: scaleY(0)
  }

  .package-card:hover::after {
    opacity: 0
  }

  .package-card.is-selected {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2)
  }

  .package-card.is-selected::before {
    transform: scaleY(1)
  }

  .package-card.is-selected::after {
    opacity: 1
  }
}