:root {
  color-scheme: dark;
  --ink: #0c111d;
  --ink-2: #151c2c;
  --paper: #f5f1e8;
  --muted: #aeb6c9;
  --blue: #3f66ff;
  --orange: #ff5a1f;
  --line: rgba(245, 241, 232, 0.18);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(12, 17, 29, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.08em;
  transform: rotate(-3deg);
}

.brand-mark span {
  color: var(--paper);
}

.brand-copy {
  max-width: 116px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--paper);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  color: var(--paper);
  background: transparent;
  border: 0;
  font: inherit;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 76px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10vw;
  bottom: 9%;
  width: 34vw;
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 28px 5px rgba(63, 102, 255, 0.45);
  transform: rotate(-8deg);
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.14);
}

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

h1,
h2,
.poster-type {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.9rem, 8.6vw, 8.8rem);
  line-height: 0.83;
}

h1 em,
.contact h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d7dbe5;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 9px 9px 0 var(--blue);
}

.text-link {
  font-size: 0.92rem;
  font-weight: 800;
  text-underline-offset: 6px;
}

.hero-poster {
  min-height: 560px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--orange);
  transform: rotate(2deg);
}

.poster-top,
.poster-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poster-type {
  display: grid;
  font-size: clamp(4.2rem, 7.3vw, 7.3rem);
  line-height: 0.72;
}

.poster-type span:nth-child(2) {
  justify-self: end;
  color: var(--paper);
  font-size: 0.45em;
  line-height: 1.4;
  transform: rotate(-7deg);
}

.poster-foot {
  flex-direction: column;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.proof-strip {
  width: 100%;
  min-height: 132px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 0.64fr) 1.6fr;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  border-top: 6px solid var(--orange);
}

.proof-strip p {
  margin: 0;
  padding: 10px 28px;
  border-right: 1px solid rgba(12, 17, 29, 0.22);
}

.proof-strip p:first-child {
  padding-left: 0;
}

.proof-strip p:last-child {
  padding-right: 0;
  border: 0;
}

.proof-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.proof-strip p > span {
  display: block;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.proof-statement {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 2.05rem) !important;
  line-height: 1.08;
  letter-spacing: -0.04em !important;
  text-align: right;
  text-transform: uppercase;
}

.proof-statement span {
  display: inline !important;
  color: var(--blue);
  font: inherit !important;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  margin-bottom: 58px;
}

h2 {
  max-width: 960px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.8vw, 7rem);
  line-height: 0.91;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.feature-image {
  position: relative;
  margin: 0;
}

.feature-image::before {
  content: "";
  position: absolute;
  inset: -15px 15px 15px -15px;
  z-index: -1;
  border: 1px solid var(--blue);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--paper);
}

.feature-image figcaption {
  position: absolute;
  right: -22px;
  bottom: 28px;
  max-width: 300px;
  padding: 15px 18px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.feature-image figcaption span,
.feature-image figcaption strong {
  display: block;
}

.feature-image figcaption span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-image figcaption strong {
  font-size: 0.9rem;
}

.feature-number {
  margin-bottom: 28px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.feature-copy h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.feature-copy > p:not(.feature-number) {
  color: #cbd1df;
  font-size: 1.08rem;
}

.check-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  padding: 16px 0;
  display: flex;
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.78rem;
}

.formats {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  background: var(--ink-2);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.heading-note {
  max-width: 330px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.format-card {
  min-height: 510px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: transform 180ms ease;
}

.format-card:hover {
  transform: translateY(-8px);
}

.format-orange {
  background: var(--orange);
}

.format-light {
  background: var(--paper);
}

.format-blue {
  background: var(--blue);
}

.format-no {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.format-label,
.format-tag {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.format-card p:not(.format-label) {
  font-size: 0.98rem;
  font-weight: 580;
  line-height: 1.55;
}

.format-tag {
  padding-top: 16px;
  border-top: 1px solid currentColor;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.about-title-wrap h2 {
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.about-copy p {
  color: var(--muted);
}

.about-copy .about-lead {
  color: var(--paper);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.deliverables {
  margin-top: 76px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverables > p {
  margin: 0;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverables ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.deliverables li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact {
  position: relative;
  min-height: 720px;
  padding: clamp(90px, 12vw, 150px) max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--ink);
}

.contact::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -22%;
  width: 50vw;
  height: 50vw;
  border: 3px solid rgba(12, 17, 29, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(12, 17, 29, 0.07), 0 0 0 140px rgba(12, 17, 29, 0.05);
}

.contact .kicker {
  color: var(--ink);
  opacity: 0.68;
}

.contact h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.contact h2 em {
  color: var(--paper);
}

.contact > p:not(.kicker) {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 1.12rem;
  font-weight: 630;
}

.button-contact {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 7px 7px 0 var(--orange);
}

.button-contact:hover,
.button-contact:focus-visible {
  box-shadow: 10px 10px 0 var(--paper);
}

.contact-stamp {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 84px;
  width: 190px;
  height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.contact-stamp span {
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.contact-stamp small {
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  width: var(--page);
  min-height: 132px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poster {
    min-height: 480px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-statement {
    grid-column: 1 / -1;
    padding: 24px 0 0 !important;
    margin-top: 18px !important;
    border-top: 1px solid rgba(12, 17, 29, 0.22) !important;
    text-align: left;
  }

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

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 390px;
  }

  .split-heading {
    display: block;
  }

  .heading-note {
    margin-top: 24px;
  }

  .contact-stamp {
    right: 28px;
    bottom: 42px;
    width: 145px;
    height: 145px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 32px, 1240px);
  }

  .site-header {
    padding: 10px 16px;
  }

  .menu-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::after {
    content: "";
    position: absolute;
    top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 22px 16px 26px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 60px;
    gap: 62px;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

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

  .hero-poster {
    min-height: 410px;
    margin: 0 10px 10px 0;
    padding: 20px;
  }

  .poster-type {
    font-size: clamp(4rem, 23vw, 6.7rem);
  }

  .proof-strip {
    padding: 26px 16px;
    grid-template-columns: 1fr;
  }

  .proof-strip p,
  .proof-strip p:first-child {
    padding: 17px 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 17, 29, 0.22);
  }

  .proof-strip .proof-statement {
    display: block;
    grid-column: auto;
    margin: 0 !important;
    border-bottom: 0 !important;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section {
    padding: 86px 0;
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4.7rem);
  }

  .feature-image figcaption {
    right: -6px;
    bottom: -20px;
  }

  .feature-copy {
    margin-top: 24px;
  }

  .formats {
    padding-right: 16px;
    padding-left: 16px;
  }

  .format-card {
    min-height: 420px;
  }

  .deliverables {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact {
    min-height: 760px;
    padding: 90px 16px 210px;
    justify-content: flex-start;
  }

  .contact-stamp {
    left: 24px;
    right: auto;
    bottom: 40px;
  }

  footer {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Superhero comic direction */
:root {
  color-scheme: light;
  --ink: #12172a;
  --ink-2: #2249d8;
  --paper: #fff8dc;
  --muted: #516078;
  --blue: #2249d8;
  --orange: #ef3f36;
  --yellow: #ffd83d;
  --sky: #72d8ff;
  --line: rgba(18, 23, 42, 0.24);
}

body {
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(18, 23, 42, 0.1) 1px, transparent 1px);
  background-size: 13px 13px;
}

body::before {
  opacity: 0.08;
  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='.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.site-header {
  min-height: 82px;
  color: var(--ink);
  background: rgba(255, 248, 220, 0.96);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 6px 0 var(--yellow);
  backdrop-filter: blur(10px);
}

.brand-mark {
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 11px;
  box-shadow: 4px 4px 0 var(--orange);
  transform: rotate(-5deg);
}

.brand-mark span {
  color: var(--blue);
}

.brand-copy {
  max-width: 130px;
  font-size: 0.8rem;
  line-height: 1.05;
}

.site-nav a {
  text-transform: uppercase;
}

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

.nav-cta {
  padding: 10px 18px;
  color: var(--paper);
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(1deg);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.hero {
  width: 100%;
  min-height: calc(100svh - 82px);
  padding: 88px max(24px, calc((100vw - 1240px) / 2)) 82px;
  gap: clamp(40px, 6vw, 90px);
  background-color: var(--paper);
  background-image:
    linear-gradient(132deg, transparent 0 72%, rgba(239, 63, 54, 0.13) 72% 74%, transparent 74%),
    radial-gradient(rgba(34, 73, 216, 0.24) 1.7px, transparent 1.7px);
  background-size: auto, 16px 16px;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 248, 220, 0.97);
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 12px 12px 0 var(--blue);
  transform: rotate(-1deg);
}

.eyebrow,
.kicker {
  color: var(--blue);
  font-size: 0.84rem;
  letter-spacing: 0.13em;
}

.eyebrow {
  width: fit-content;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.eyebrow span {
  background: var(--orange);
  box-shadow: none;
}

h1 {
  color: var(--ink);
  font-size: clamp(3.7rem, 8vw, 8.1rem);
  line-height: 0.86;
  -webkit-text-stroke: 1px var(--ink);
}

h1 em {
  color: var(--blue);
  text-shadow: 5px 5px 0 var(--yellow);
}

.hero-intro {
  color: #29344b;
  font-weight: 620;
}

.button {
  min-height: 56px;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -4px) rotate(-1deg);
}

.button-primary {
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 9px 9px 0 var(--blue);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.hero-poster {
  position: relative;
  min-height: 560px;
  overflow: visible;
  color: var(--ink);
  background-color: var(--yellow);
  background-image: radial-gradient(rgba(18, 23, 42, 0.26) 2px, transparent 2px);
  background-size: 14px 14px;
  border: 5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 13px 13px 0 var(--orange);
  transform: rotate(3deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  background: rgba(255, 216, 61, 0.88);
  border: 3px solid var(--ink);
  border-radius: 12px;
}

.hero-poster > * {
  position: relative;
  z-index: 1;
}

.poster-top {
  padding: 7px 10px;
  color: var(--paper);
  background: var(--blue);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.poster-type {
  padding: 0 14px;
  font-size: clamp(4.2rem, 7.1vw, 7.1rem);
  text-shadow: 4px 4px 0 var(--paper);
  transform: skew(-4deg);
}

.poster-type span:nth-child(2) {
  color: var(--orange);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 3px 3px 0 var(--paper);
}

.poster-foot {
  margin: 0 10px 10px;
  padding: 15px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.comic-burst {
  position: absolute;
  top: 43%;
  right: -54px;
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--orange);
  border: 4px solid var(--ink);
  clip-path: polygon(50% 0%, 60% 22%, 79% 8%, 78% 31%, 100% 28%, 83% 47%, 100% 60%, 77% 63%, 82% 87%, 61% 75%, 50% 100%, 40% 76%, 18% 90%, 23% 65%, 0% 61%, 18% 47%, 1% 31%, 24% 31%, 20% 8%, 41% 23%);
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  text-shadow: 2px 2px 0 var(--ink);
  transform: rotate(10deg);
}

.proof-strip {
  min-height: 144px;
  background: var(--yellow);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}

.proof-strip p {
  border-right: 3px solid var(--ink);
}

.proof-strip strong {
  color: var(--blue);
  text-shadow: 2px 2px 0 var(--paper);
}

.proof-statement span {
  color: var(--orange);
}

.work {
  position: relative;
  color: var(--ink);
}

.work::before {
  content: "POW!";
  position: absolute;
  top: 7%;
  right: 2%;
  z-index: -1;
  color: rgba(239, 63, 54, 0.12);
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 1;
  transform: rotate(-8deg);
}

h2 {
  color: var(--ink);
  text-shadow: 4px 4px 0 var(--yellow);
}

.feature-image::before {
  inset: -14px 14px 14px -14px;
  background: var(--yellow);
  border: 4px solid var(--ink);
}

.feature-image img {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% 42%;
  border: 5px solid var(--ink);
  border-radius: 15px;
  filter: saturate(1.08) contrast(1.03);
}

.feature-image figcaption {
  right: -20px;
  color: var(--paper);
  background: var(--blue);
  border: 4px solid var(--ink);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 7px 7px 0 var(--orange);
  transform: rotate(-2deg);
}

.feature-copy {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--orange);
  transform: rotate(1deg);
}

.feature-number {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 11px;
  color: var(--paper);
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-2deg);
}

.feature-copy h3 {
  color: var(--blue);
}

.feature-copy > p:not(.feature-number) {
  color: #34415a;
}

.check-list {
  border-top: 3px solid var(--ink);
}

.check-list li {
  border-bottom: 2px dashed rgba(18, 23, 42, 0.35);
}

.check-list span {
  color: var(--orange);
}

.formats {
  color: var(--paper);
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 248, 220, 0.2) 2px, transparent 2px);
  background-size: 17px 17px;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}

.formats .kicker {
  color: var(--yellow);
}

.formats h2 {
  color: var(--paper);
  text-shadow: 5px 5px 0 var(--orange);
}

.heading-note {
  padding: 13px 16px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 750;
  transform: rotate(2deg);
}

.format-grid {
  gap: 26px;
}

.format-card {
  min-height: 500px;
  border: 5px solid var(--ink);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--ink);
}

.format-card:nth-child(1) {
  transform: rotate(-2deg);
}

.format-card:nth-child(2) {
  transform: translateY(18px) rotate(1deg);
}

.format-card:nth-child(3) {
  transform: rotate(2deg);
}

.format-card:hover {
  transform: translateY(-10px) rotate(-1deg);
}

.format-orange {
  color: var(--paper);
  background: var(--orange);
}

.format-light {
  color: var(--ink);
  background: var(--yellow);
}

.format-blue {
  color: var(--ink);
  background: var(--sky);
}

.format-no {
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}

.format-light .format-no,
.format-blue .format-no {
  color: var(--orange);
}

.format-label {
  width: fit-content;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.about {
  color: var(--ink);
}

.about-copy p {
  color: #43506a;
}

.about-copy .about-lead {
  color: var(--ink);
}

.deliverables {
  padding: 30px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--blue);
}

.deliverables > p {
  color: var(--orange);
}

.deliverables li {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}

.contact {
  color: var(--ink);
  background-color: var(--orange);
  background-image: radial-gradient(rgba(255, 248, 220, 0.28) 2.4px, transparent 2.4px);
  background-size: 18px 18px;
  border-top: 5px solid var(--ink);
}

.contact::before {
  top: -16%;
  right: -8%;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(var(--ink) 2px, var(--yellow) 2px);
  background-size: 14px 14px;
  border: 5px solid var(--ink);
  box-shadow: 0 0 0 32px var(--paper), 0 0 0 37px var(--ink);
  opacity: 0.9;
}

.contact .kicker {
  width: fit-content;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  opacity: 1;
}

.contact h2 {
  max-width: 980px;
  color: var(--paper);
  text-shadow: 5px 5px 0 var(--ink);
}

.contact h2 em {
  color: var(--yellow);
}

.contact > p:not(.kicker) {
  padding: 18px 20px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--ink);
}

.button-contact {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 7px 7px 0 var(--blue);
}

.button-contact:hover,
.button-contact:focus-visible {
  box-shadow: 10px 10px 0 var(--paper);
}

.contact-stamp {
  color: var(--paper);
  background: var(--blue);
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow);
}

footer {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  color: var(--paper);
  background: var(--ink);
  border-top: 5px solid var(--yellow);
}

footer p {
  color: #dce2f2;
}

:focus-visible {
  outline-color: var(--blue);
}

@media (max-width: 980px) {
  .hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .comic-burst {
    right: -24px;
  }

  .format-card:nth-child(1),
  .format-card:nth-child(2),
  .format-card:nth-child(3) {
    transform: none;
  }
}

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

  .menu-toggle {
    color: var(--ink);
  }

  .site-nav {
    top: 76px;
    color: var(--ink);
    background: var(--yellow);
    border-bottom: 4px solid var(--ink);
  }

  .hero {
    padding: 64px 16px 78px;
  }

  .hero-copy {
    padding: 25px 20px 30px;
    box-shadow: 8px 8px 0 var(--blue);
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.6rem);
    text-shadow: none;
  }

  h1 em {
    text-shadow: 3px 3px 0 var(--yellow);
  }

  .hero-poster {
    min-height: 440px;
    margin-right: 14px;
    box-shadow: 10px 10px 0 var(--orange);
  }

  .comic-burst {
    top: 45%;
    right: -18px;
    width: 104px;
    font-size: 1rem;
  }

  .proof-strip {
    padding: 24px 16px;
  }

  .proof-strip p,
  .proof-strip p:first-child {
    border-bottom: 2px solid rgba(18, 23, 42, 0.35);
  }

  .feature-image figcaption {
    right: -4px;
  }

  .feature-copy {
    padding: 28px 22px;
  }

  .formats {
    padding-right: 16px;
    padding-left: 16px;
  }

  .format-card {
    min-height: 410px;
  }

  .deliverables {
    padding: 24px 20px;
  }

  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact::before {
    width: 92vw;
    height: 92vw;
    opacity: 0.34;
  }

  footer {
    padding: 34px 16px;
  }
}

/* Photo gallery: printed panels with a gentle spring on hover. */
.comic-gallery {
  padding: clamp(84px, 9vw, 132px) max(24px, calc((100vw - 1240px) / 2));
  background-color: var(--paper);
  background-image: radial-gradient(rgba(34, 73, 216, 0.13) 1.7px, transparent 1.7px);
  background-size: 17px 17px;
  border-bottom: 5px solid var(--ink);
}

.gallery-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.gallery-heading > div {
  min-width: 0;
  max-width: 450px;
}

.gallery-heading h2 {
  max-width: 100%;
  font-size: clamp(3.4rem, 5.2vw, 5.8rem);
}

.gallery-heading h2 em {
  color: var(--blue);
  font-style: normal;
  text-shadow: 4px 4px 0 var(--yellow);
}

.gallery-heading p:not(.kicker) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #34415a;
  font-size: 1.08rem;
  font-weight: 650;
}

.gallery-badge {
  width: min(780px, 100%);
  height: auto;
  aspect-ratio: 1;
  flex: none;
  margin: 0;
  justify-self: start;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(14px 18px 0 var(--orange));
  transform: rotate(-2deg);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: clamp(390px, 33vw, 430px);
  grid-auto-rows: clamp(340px, 32vw, 390px);
  grid-auto-flow: dense;
  gap: 22px;
}

.photo-tile {
  --tilt: -1deg;
  position: relative;
  grid-column: span 4;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--yellow);
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--ink);
  isolation: isolate;
  transform-origin: center 75%;
  transition: opacity 750ms ease, transform 720ms cubic-bezier(.16, 1.8, .3, 1), box-shadow 520ms ease;
}

.photo-tile::after {
  content: "POW!";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--orange);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) rotate(-14deg) scale(.55);
  transition: opacity 220ms ease, transform 540ms cubic-bezier(.16, 1.8, .3, 1);
}

.photo-tile:nth-child(3n + 2)::after {
  content: "ZAP!";
  background: var(--sky);
}

.photo-tile:nth-child(3n)::after {
  content: "MEOW!";
  background: var(--orange);
}

.photo-tile:hover::after {
  opacity: 1;
  transform: translateY(0) rotate(7deg) scale(1);
}

.photo-tile:nth-child(even) {
  --tilt: 1.5deg;
}

.photo-tile.is-visible {
  transform: rotate(var(--tilt));
  animation: tile-bounce-in 1100ms cubic-bezier(.22, 1, .36, 1) backwards;
}

.photo-tile:nth-child(3n + 2).is-visible {
  animation-delay: 120ms;
}

.photo-tile:nth-child(3n).is-visible {
  animation-delay: 240ms;
}

@keyframes tile-bounce-in {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(.62) rotate(-12deg);
    box-shadow: 0 0 0 var(--ink);
  }

  52% {
    opacity: 1;
    transform: translateY(-28px) scale(1.14) rotate(6deg);
    box-shadow: 22px 25px 0 var(--orange);
  }

  72% {
    transform: translateY(12px) scale(.94) rotate(-4deg);
    box-shadow: 4px 4px 0 var(--ink);
  }

  88% {
    transform: translateY(-8px) scale(1.035) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--tilt));
    box-shadow: 8px 8px 0 var(--ink);
  }
}

.photo-tile:hover {
  z-index: 4;
  transform: translateY(-24px) rotate(-3deg) scale(1.09);
  box-shadow: 20px 24px 0 var(--ink);
}

.photo-tile:nth-child(even):hover {
  transform: translateY(-24px) rotate(3deg) scale(1.09);
}

.photo-tile:active,
.photo-tile:nth-child(even):active {
  transform: translateY(3px) rotate(0) scale(.97);
  box-shadow: 3px 3px 0 var(--ink);
  transition-duration: 120ms;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(.2, 1.55, .38, 1);
}

.photo-tile:hover img {
  transform: scale(1.12);
}

.tile-duo-cover img {
  object-position: center 40%;
}

.tile-greg-portrait img {
  object-position: center top;
}

.tile-greg-toofers img {
  object-position: center top;
}

.tile-brody-red-chair img {
  object-position: center 35%;
  transform: rotate(180deg);
}

.tile-brody-red-chair:hover img {
  transform: rotate(180deg) scale(1.12);
}

.photo-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 76px;
  padding: 10px 15px 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-top: 4px solid var(--ink);
}

.photo-tile figcaption span {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.photo-tile figcaption strong {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.18;
}

.tile-wide {
  grid-column: span 8;
}

.tile-tall {
  grid-row: span 2;
}

.tile-blue figcaption {
  color: var(--paper);
  background: var(--blue);
}

.tile-red figcaption {
  color: var(--paper);
  background: var(--orange);
}

.tile-sky figcaption {
  background: var(--sky);
}

.tile-duo-embrace img {
  object-position: center;
}

@media (max-width: 980px) {
  .gallery-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .gallery-heading h2 {
    font-size: clamp(3rem, 5.6vw, 5rem);
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: clamp(270px, calc(37.2vw + 66px), 430px);
    grid-auto-rows: clamp(320px, 44vw, 390px);
    gap: 20px;
  }

  .photo-tile,
  .tile-wide {
    grid-column: span 1;
  }

  .photo-tile:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .comic-gallery {
    padding: 82px 16px;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-badge {
    width: 100%;
    max-width: 560px;
    margin-top: 16px;
    filter: drop-shadow(8px 10px 0 var(--orange));
  }

  .photo-grid {
    gap: 16px;
  }

  .photo-tile {
    border-width: 4px;
    border-radius: 14px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .photo-tile figcaption {
    min-height: 70px;
    padding: 8px 10px;
  }

  .photo-tile figcaption strong {
    font-size: .94rem;
  }
}

@media (max-width: 520px) {
  .gallery-heading {
    display: block;
  }

  .gallery-badge {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 14px 0 0;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: clamp(230px, calc(37.2vw + 66px), 270px);
    grid-auto-rows: 350px;
  }

  .photo-tile,
  .photo-tile:first-child,
  .photo-tile:last-child {
    grid-column: 1;
  }

  .tile-tall {
    grid-row: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-tile,
  .photo-tile img,
  .photo-tile::after {
    transition: none;
  }

  .photo-tile.is-visible,
  .photo-tile:hover,
  .photo-tile:hover img {
    transform: none;
  }

  .photo-tile.is-visible {
    animation: none;
  }

  .tile-brody-red-chair:hover img {
    transform: rotate(180deg);
  }
}

/* Playable videos in dimensional phone and comic-panel frames. */
.video-showcase {
  padding: clamp(84px, 9vw, 132px) max(24px, calc((100vw - 1240px) / 2));
  color: var(--paper);
  background-color: var(--blue);
  background-image: radial-gradient(rgba(255, 248, 220, .22) 2px, transparent 2px);
  background-size: 17px 17px;
  border-bottom: 5px solid var(--ink);
}

.video-heading {
  margin-bottom: 68px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.video-heading .kicker {
  color: var(--yellow);
}

.video-heading h2 {
  color: var(--paper);
  text-shadow: 5px 5px 0 var(--orange);
}

.video-heading h2 em {
  color: var(--yellow);
  font-style: normal;
}

.video-heading > p {
  max-width: 320px;
  margin: 0 0 8px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 700;
  transform: rotate(2deg);
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.phone-card {
  --phone-tilt: -2deg;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transition: opacity 650ms ease, transform 500ms cubic-bezier(.2, 1.55, .38, 1);
}

.phone-card:nth-child(even) {
  --phone-tilt: 2deg;
}

.phone-card.is-visible {
  transform: rotate(var(--phone-tilt));
}

.phone-card:hover {
  transform: translateY(-10px) rotate(0deg);
}

.phone-shell {
  position: relative;
  width: min(100%, 260px);
  padding: 27px 10px 22px;
  overflow: hidden;
  background: #12172a;
  border: 5px solid #05070f;
  border-radius: 37px;
  box-shadow: 5px 4px 0 #536179, 11px 11px 0 var(--ink), 18px 18px 0 var(--orange);
  transform: perspective(900px) rotateY(-5deg) rotateX(3deg);
  transform-origin: center;
}

.phone-card:nth-child(even) .phone-shell {
  box-shadow: 5px 4px 0 #536179, 11px 11px 0 var(--ink), 18px 18px 0 var(--yellow);
  transform: perspective(900px) rotateY(5deg) rotateX(3deg);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 19%;
  right: 0;
  width: 4px;
  height: 48px;
  background: #8a96aa;
  border-radius: 3px 0 0 3px;
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 66px;
  height: 8px;
  background: #3c4659;
  border-radius: 10px;
  transform: translateX(-50%);
}

.phone-shell video,
.mini-video-screen video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--ink);
}

.phone-shell video {
  border: 2px solid #616e87;
  border-radius: 22px;
}

.phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 45px;
  height: 4px;
  background: #68758c;
  border-radius: 10px;
  transform: translateX(-50%);
}

.phone-caption {
  width: 100%;
  min-height: 160px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 14px;
  box-shadow: 7px 7px 0 var(--yellow);
}

.phone-caption span {
  color: var(--orange);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.phone-caption h3 {
  margin: 7px 0;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  line-height: 1.1;
}

.phone-caption p {
  margin: 0;
  color: #34415a;
  font-size: .9rem;
  line-height: 1.4;
}

.more-videos {
  margin-top: 94px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  border-top: 4px solid var(--yellow);
}

.more-videos-intro {
  grid-column: 1 / -1;
}

.more-videos-intro .kicker {
  margin-bottom: 12px;
  color: var(--yellow);
}

.more-videos-intro h3 {
  max-width: 650px;
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.mini-video {
  min-width: 0;
  padding: 9px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 15px;
  box-shadow: 7px 7px 0 var(--orange);
  transition: opacity 650ms ease, transform 500ms cubic-bezier(.2, 1.55, .38, 1);
}

.mini-video:nth-child(odd) {
  box-shadow: 7px 7px 0 var(--yellow);
}

.mini-video.is-visible {
  transform: rotate(-1deg);
}

.mini-video:nth-child(even).is-visible {
  transform: rotate(1deg);
}

.mini-video:hover {
  transform: translateY(-8px) rotate(0deg);
}

.mini-video-screen {
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 9px;
}

.mini-video-label {
  padding: 10px 5px 2px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.3;
}

.mini-video-label span {
  flex: none;
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 30px;
  }

  .phone-card {
    max-width: 350px;
    justify-self: center;
  }
}

@media (max-width: 800px) {
  .video-heading {
    display: block;
  }

  .video-heading > p {
    max-width: 580px;
    margin-top: 30px;
  }

  .more-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .video-showcase {
    padding: 82px 16px;
  }

  .phone-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .phone-card {
    width: min(100%, 370px);
  }

  .phone-caption {
    min-height: auto;
  }

  .more-videos {
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .more-videos {
    grid-template-columns: 1fr;
  }

  .mini-video {
    max-width: 300px;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-card,
  .mini-video {
    transition: none;
  }

  .phone-card.is-visible,
  .phone-card:hover,
  .mini-video.is-visible,
  .mini-video:hover {
    transform: none;
  }
}

.soundtrack-toggle {
  --music-bg: var(--yellow);
  --music-color: var(--ink);
  --music-shadow: var(--orange);
  --music-tilt: -3deg;
  position: relative;
  z-index: 1;
  min-height: 64px;
  padding: 10px 18px 11px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--music-color);
  background: var(--music-bg);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--music-shadow);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: rotate(var(--music-tilt));
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.soundtrack-toggle:hover {
  box-shadow: 8px 8px 0 var(--music-shadow);
  transform: translateY(-4px) rotate(0deg);
}

.soundtrack-toggle:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

.soundtrack-toggle[aria-pressed="true"] {
  box-shadow: 5px 5px 0 var(--music-shadow), 0 0 0 4px var(--paper);
}

.soundtrack-eyebrow,
.soundtrack-action {
  display: block;
}

.soundtrack-eyebrow {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.soundtrack-action {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 900;
}

.soundtrack-toggle--hero {
  --music-tilt: -6deg;
  margin-top: 30px;
  border-radius: 999px;
}

.soundtrack-toggle--gallery {
  --music-bg: var(--orange);
  --music-shadow: var(--blue);
  --music-tilt: 5deg;
  margin-top: 28px;
  border-radius: 7px 25px 7px 25px;
}

.soundtrack-toggle--videos {
  --music-bg: var(--sky);
  --music-shadow: var(--yellow);
  --music-tilt: -5deg;
  display: flex;
  width: max-content;
  margin: -30px 18px 42px auto;
  border-radius: 27px 27px 27px 6px;
}

.soundtrack-toggle--work {
  --music-bg: var(--blue);
  --music-color: var(--paper);
  --music-shadow: var(--orange);
  --music-tilt: 4deg;
  display: flex;
  width: max-content;
  margin: 28px 0 0 auto;
  border-radius: 25px 6px 25px 6px;
}

.soundtrack-toggle--formats {
  --music-bg: var(--paper);
  --music-shadow: var(--orange);
  --music-tilt: 6deg;
  display: flex;
  width: max-content;
  margin: 40px auto 0;
  border-radius: 6px 30px 6px 30px;
}

.soundtrack-toggle--about {
  --music-bg: var(--sky);
  --music-shadow: var(--blue);
  --music-tilt: -7deg;
  margin-top: 26px;
  border-radius: 28px 9px 28px 9px;
}

.soundtrack-toggle--contact {
  --music-bg: var(--yellow);
  --music-shadow: var(--blue);
  --music-tilt: 7deg;
  align-self: flex-end;
  margin: 30px 210px 0 0;
  border-radius: 999px;
}

@media (max-width: 800px) {
  .soundtrack-toggle--videos {
    margin-top: -12px;
  }

  .soundtrack-toggle--contact {
    align-self: flex-start;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soundtrack-toggle {
    transition: none;
  }
}

/* Comic-panel accents and the second, splat-shaped soundtrack controls. */
.hero {
  padding-bottom: 158px;
}

.hero-copy {
  background-color: #d9f1ff;
  background-image: radial-gradient(rgba(34, 73, 216, 0.12) 1px, transparent 1px);
  background-size: 15px 15px;
}

.hero-hello {
  position: absolute !important;
  top: -48px;
  left: 18px;
  z-index: 4 !important;
  padding: 1px 17px 5px;
  color: var(--orange);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 8px 24px 8px 18px;
  box-shadow: 6px 6px 0 var(--blue);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 var(--yellow);
  transform: rotate(-10deg);
}

.poster-type {
  position: relative;
  display: block;
  line-height: 1.13;
}

.poster-type span:first-child,
.poster-type span:last-child {
  display: block;
}

.poster-type span:last-child {
  margin-top: 0.17em;
}

.poster-type span:nth-child(2) {
  position: absolute;
  top: 43%;
  right: 7%;
  z-index: 2;
  font-size: 0.56em;
  line-height: 1;
  transform: rotate(-12deg);
}

.comic-burst {
  top: auto;
  right: -34px;
  bottom: 44px;
  z-index: 3 !important;
  font-size: 1.45rem;
  -webkit-text-stroke: 1.4px var(--yellow);
  text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink);
}

.comic-word {
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 220px;
  padding: 25px 28px;
  display: block;
  color: var(--orange);
  background: var(--yellow);
  clip-path: polygon(50% 0%, 60% 19%, 79% 6%, 78% 28%, 100% 25%, 82% 47%, 100% 62%, 76% 64%, 84% 91%, 60% 77%, 48% 100%, 39% 78%, 16% 92%, 23% 66%, 0% 60%, 18% 46%, 0% 29%, 25% 29%, 18% 7%, 41% 21%);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 5px 0 var(--blue);
  filter: drop-shadow(7px 8px 0 var(--ink));
}

.comic-word--gallery {
  margin: -24px 5% 32px auto;
  transform: rotate(8deg);
}

.comic-word--about {
  margin: 26px 0 -22px 3%;
  color: var(--yellow);
  background: var(--orange);
  text-shadow: 4px 5px 0 var(--blue);
  transform: rotate(-9deg);
}

.work .section-heading {
  position: relative;
  min-height: 185px;
  padding-right: clamp(160px, 19vw, 240px);
}

.work-burst {
  position: absolute;
  top: 2px;
  right: 0;
  width: clamp(155px, 18vw, 225px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--ink);
  clip-path: polygon(50% 0%, 59% 20%, 78% 5%, 77% 29%, 100% 25%, 82% 47%, 100% 62%, 75% 64%, 83% 91%, 59% 77%, 49% 100%, 39% 78%, 17% 91%, 24% 65%, 0% 60%, 18% 46%, 1% 28%, 25% 29%, 19% 6%, 41% 21%);
  filter: drop-shadow(9px 10px 0 var(--orange));
  transform: rotate(10deg);
}

.work-burst::before {
  content: "";
  position: absolute;
  inset: 6px;
  background-color: var(--yellow);
  background-image: radial-gradient(rgba(18, 23, 42, 0.34) 2px, transparent 2px);
  background-size: 11px 11px;
  clip-path: inherit;
}

.work-burst span {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-style: italic;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1.5px var(--ink);
  text-shadow: 3px 4px 0 var(--paper);
}

.soundtrack-toggle--splat {
  --music-tilt: -9deg;
  width: 158px;
  min-height: 148px;
  padding: 29px;
  align-items: center;
  color: var(--music-color);
  background: var(--ink);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(50% 0%, 59% 19%, 75% 5%, 74% 25%, 96% 17%, 83% 39%, 100% 49%, 82% 57%, 96% 79%, 73% 73%, 69% 99%, 51% 79%, 39% 100%, 32% 78%, 7% 89%, 21% 65%, 0% 54%, 20% 46%, 5% 22%, 29% 27%, 33% 5%, 45% 21%);
  filter: drop-shadow(7px 8px 0 var(--music-shadow));
}

.soundtrack-toggle--splat::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--music-bg);
  clip-path: inherit;
}

.soundtrack-toggle--splat .soundtrack-action {
  position: relative;
  z-index: 1;
  max-width: 94px;
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.soundtrack-toggle--splat:hover {
  box-shadow: none;
  filter: drop-shadow(9px 10px 0 var(--music-shadow));
}

.soundtrack-toggle--splat[aria-pressed="true"] {
  box-shadow: none;
  filter: drop-shadow(0 0 8px var(--yellow)) drop-shadow(7px 8px 0 var(--music-shadow));
}

.soundtrack-toggle--splat:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 6px var(--paper)) drop-shadow(0 0 10px var(--blue));
}

.soundtrack-toggle--splat-hero {
  --music-bg: var(--sky);
  --music-shadow: var(--blue);
  --music-tilt: 12deg;
  position: absolute !important;
  right: 8px;
  bottom: -89px;
  z-index: 4 !important;
}

.soundtrack-toggle--splat-gallery {
  --music-bg: var(--yellow);
  --music-shadow: var(--orange);
  --music-tilt: -11deg;
  display: flex;
  margin: 30px 4% 0 auto;
}

.soundtrack-toggle--splat-videos {
  --music-bg: var(--orange);
  --music-shadow: var(--yellow);
  --music-tilt: 8deg;
  display: flex;
  margin: 42px auto 0 4%;
}

.soundtrack-toggle--splat-work {
  --music-bg: var(--yellow);
  --music-shadow: var(--blue);
  --music-tilt: -8deg;
  display: flex;
  margin: 38px 0 0 6%;
}

.soundtrack-toggle--splat-formats {
  --music-bg: var(--orange);
  --music-shadow: var(--yellow);
  --music-tilt: 10deg;
  display: flex;
  margin: -16px 8% 35px auto;
}

.soundtrack-toggle--splat-about {
  --music-bg: var(--orange);
  --music-shadow: var(--blue);
  --music-tilt: 7deg;
  display: flex;
  margin: 38px 7% 0 auto;
}

.soundtrack-toggle--splat-contact {
  --music-bg: var(--sky);
  --music-shadow: var(--yellow);
  --music-tilt: -12deg;
  align-self: flex-start;
  margin: 30px 0 0 10%;
}

@media (max-width: 900px) {
  .work .section-heading {
    min-height: 0;
    padding-right: 0;
  }

  .work-burst {
    position: relative;
    top: auto;
    right: auto;
    width: 155px;
    margin: 20px 18px 0 auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 155px;
  }

  .hero-hello {
    top: -37px;
    left: 12px;
    font-size: 2rem;
  }

  .poster-type {
    font-size: clamp(3.5rem, 13vw, 5.4rem);
  }

  .poster-type span:nth-child(2) {
    top: 42%;
    right: 2%;
  }

  .comic-burst {
    top: auto;
    right: -14px;
    bottom: 48px;
    width: 108px;
    font-size: 1.1rem;
  }

  .soundtrack-toggle--splat-hero {
    right: 0;
    bottom: -88px;
  }

  .comic-word {
    min-width: 175px;
    padding: 20px 23px;
    font-size: 2.6rem;
  }

  .comic-word--gallery {
    margin-top: -8px;
  }
}

@media (max-width: 420px) {
  .soundtrack-toggle--splat {
    width: 140px;
    min-height: 132px;
    padding: 24px;
  }

  .soundtrack-toggle--splat .soundtrack-action {
    font-size: 0.95rem;
  }
}

/* Original pop-art backdrop for the Behind the Action chapter. */
.work {
  width: 100%;
  margin: 0;
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  isolation: isolate;
  overflow: hidden;
  background-color: var(--yellow);
  background-image: linear-gradient(rgba(255, 248, 220, 0.06), rgba(255, 248, 220, 0.08)), url("./assets/backgrounds/work-comic-explosion.png");
  background-size: cover;
  background-position: center center;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}

.work::before {
  top: 4%;
  right: 3%;
  z-index: 1;
  color: var(--blue);
  font-size: clamp(7rem, 16vw, 16rem);
  opacity: 1;
  pointer-events: none;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--paper), 11px 12px 0 var(--ink);
}

.work .section-heading,
.work .feature-grid,
.work > .soundtrack-toggle {
  position: relative;
  z-index: 2;
}

.work .section-heading h2 {
  text-shadow: 5px 5px 0 var(--yellow), 8px 8px 0 rgba(18, 23, 42, 0.2);
}

@media (max-width: 720px) {
  .work {
    padding-right: 16px;
    padding-left: 16px;
    background-position: 52% center;
  }

  .work::before {
    top: 3%;
    right: -2%;
    font-size: clamp(5rem, 22vw, 9rem);
  }
}

/* A cool-toned, original comic explosion tucked behind the opening card. */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: min(72vw, 890px);
  height: min(63vw, 650px);
  background: url("./assets/decoration/hero-comic-corner.png") left top / contain no-repeat;
  pointer-events: none;
}

.comic-burst {
  width: 180px;
  height: 180px;
  aspect-ratio: auto;
  padding-top: 58px;
  color: var(--paper);
  background: url("./assets/decoration/meow-paw.png") center / contain no-repeat;
  border: 0;
  clip-path: none;
  -webkit-text-stroke: 1.5px var(--blue);
  text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink);
  transform: rotate(8deg);
}

.about {
  padding-top: clamp(55px, 7vw, 90px);
  padding-bottom: 100px;
}

.about-grid {
  align-items: center;
}

.about-bang {
  display: block;
  width: clamp(300px, 35vw, 430px);
  height: auto;
  margin: 0 0 6px -12px;
  mix-blend-mode: multiply;
  transform: rotate(-8deg) scaleX(1.08);
  transform-origin: left center;
}

.about-copy .about-lead {
  margin: 0 0 28px;
  color: var(--ink);
  line-height: 1.2;
}

.about-lead-intro,
.about-lead-rest {
  display: block;
}

.about-lead-intro {
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 850;
  letter-spacing: -.045em;
}

.about-lead-pop {
  width: fit-content;
  max-width: 100%;
  margin: .22em 0 .3em;
  padding: .12em .18em .16em;
  display: block;
  color: var(--blue);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--orange);
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.about-lead-rest {
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.about-copy > p:not(.about-lead) {
  max-width: 52ch;
  padding-left: 18px;
  border-left: 6px solid var(--orange);
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
  font-weight: 650;
  line-height: 1.5;
}

.about .deliverables {
  margin-top: 48px;
}

.backstory {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background-color: #d9f1ff;
  background-image: radial-gradient(rgba(34, 73, 216, 0.2) 1.5px, transparent 1.5px);
  background-size: 17px 17px;
  border-top: 5px solid var(--ink);
}

.backstory-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(75px, 9vw, 120px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.backstory-heading {
  position: static;
}

.backstory-heading h2 {
  max-width: 540px;
  font-size: clamp(3.3rem, 5.2vw, 4.625rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--yellow);
}

.backstory-photos {
  margin-top: 40px;
  padding: 10px 16px 30px 8px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.backstory-photo {
  --tilt: -5deg;
  --hover-tilt: 3deg;
  --frame-bg: var(--yellow);
  --frame-shadow: var(--orange);
  width: min(87%, 385px);
  margin: 0;
  padding: 12px;
  background: var(--frame-bg);
  border: 5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 10px 12px 0 var(--frame-shadow), 14px 16px 0 var(--ink);
  transform: rotate(var(--tilt));
  transition: transform 350ms cubic-bezier(.2, 1.5, .4, 1), box-shadow 350ms ease;
}

.backstory-photo--brody {
  --tilt: 5deg;
  --hover-tilt: -3deg;
  --frame-bg: var(--sky);
  --frame-shadow: var(--blue);
  align-self: flex-end;
}

.backstory-photo img {
  width: 100%;
  height: auto;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.backstory-photo figcaption {
  padding: 11px 2px 1px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
  color: var(--ink);
  line-height: 1.15;
}

.backstory-photo figcaption span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.backstory-photo figcaption strong {
  font-size: .94rem;
  font-weight: 900;
}

.backstory-photo.reveal {
  opacity: 0;
  transform: translateY(80px) scale(.62) rotate(-14deg);
}

.backstory-photo.reveal.is-visible {
  opacity: 1;
  transform: rotate(var(--tilt));
  animation: backstory-photo-pop 900ms cubic-bezier(.18, 1, .3, 1) backwards;
}

.backstory-photo--brody.reveal.is-visible {
  animation-delay: 120ms;
}

.backstory-photo.reveal.is-visible:hover {
  transform: translateY(-15px) rotate(var(--hover-tilt)) scale(1.06);
  box-shadow: 17px 21px 0 var(--frame-shadow), 22px 26px 0 var(--ink);
}

@keyframes backstory-photo-pop {
  0% { opacity: 0; transform: translateY(80px) scale(.62) rotate(-14deg); }
  58% { opacity: 1; transform: translateY(-22px) scale(1.13) rotate(7deg); }
  78% { transform: translateY(7px) scale(.96) rotate(-7deg); }
  100% { transform: rotate(var(--tilt)) scale(1); }
}

.backstory-copy {
  padding: clamp(26px, 4vw, 48px);
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 10px 10px 0 var(--orange);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.backstory-copy p {
  margin: 0 0 1.35em;
}

.backstory-copy p:last-child {
  margin-bottom: 0;
}

.backstory-copy strong {
  color: var(--blue);
}

.backstory-final {
  margin-top: 1.7em !important;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--blue);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.12;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.backstory-final strong {
  color: inherit;
}

@media (max-width: 800px) {
  .backstory-inner {
    grid-template-columns: 1fr;
  }

  .backstory-heading h2 {
    max-width: 720px;
  }

  .backstory-photos {
    margin-top: 38px;
    padding: 10px 15px 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .backstory-photo {
    width: 100%;
  }

  .backstory-photo--brody {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .backstory-photos {
    padding-right: 18px;
    padding-left: 8px;
    display: flex;
    gap: 28px;
  }

  .backstory-photo {
    width: min(87%, 310px);
  }

  .backstory-photo--brody {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .backstory-photo.reveal,
  .backstory-photo.reveal.is-visible,
  .backstory-photo.reveal.is-visible:hover {
    opacity: 1;
    animation: none;
    transform: rotate(var(--tilt));
    transition: none;
  }
}

@media (max-width: 720px) {
  .hero::before {
    width: min(110vw, 690px);
    height: 460px;
    left: -8vw;
  }

  .comic-burst {
    width: 132px;
    height: 132px;
    padding-top: 43px;
  }

  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-bang {
    width: min(82vw, 330px);
    margin-left: -4px;
    transform: rotate(-8deg) scaleX(1.04);
  }

  .backstory-inner {
    width: min(100% - 32px, 720px);
    padding: 75px 0 90px;
  }
}

@media (max-width: 620px) {
  .video-heading h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }
}
