@font-face {
  font-family: "Work Sans";
  src: url("../assets/WorkSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Horizon";
  src: url("../assets/Horizon.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: transparent transparent;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: transparent;
  background-clip: content-box;
}


body {
  background: #fff;
  color: #191919;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  zoom: 0.9;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.placeholder,
.video-placeholder {
  background: linear-gradient(145deg, #eeeeee, #cfcfcf);
}

.case-nav {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-home,
.nav-portfolio-toggle {
  min-height: 42px;
  border: 1.2px solid rgba(140, 82, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.07);
  color: #8c52ff;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-home {
  display: grid;
  width: 42px;
  place-items: center;
  font-size: 14px;
  text-decoration: none;
}

.nav-portfolio {
  position: relative;
}

.nav-portfolio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 17px;
  font: inherit;
  cursor: pointer;
}

.nav-portfolio-toggle span {
  color: #8c52ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-portfolio-toggle i {
  color: #8c52ff;
  font-size: 10.5px;
  transition: transform 180ms ease;
}

.nav-portfolio-links {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 100%;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-portfolio-links::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px -12px;
}

.nav-portfolio-links::before {
  content: "";
  position: absolute;
  right: auto;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-portfolio:hover .nav-portfolio-links,
.nav-portfolio:focus-within .nav-portfolio-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-portfolio:hover .nav-portfolio-toggle i,
.nav-portfolio:focus-within .nav-portfolio-toggle i {
  transform: rotate(90deg);
}

.nav-home:hover,
.nav-portfolio:hover .nav-portfolio-toggle,
.nav-portfolio:focus-within .nav-portfolio-toggle {
  background: #8c52ff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  transform: translateY(-2px);
}

.nav-portfolio:hover .nav-portfolio-toggle span,
.nav-portfolio:focus-within .nav-portfolio-toggle span,
.nav-portfolio:hover .nav-portfolio-toggle i,
.nav-portfolio:focus-within .nav-portfolio-toggle i {
  color: #fff;
}

.nav-portfolio-links a {
  position: relative;
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 8px 10px;
  border: 2px solid #8c52ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  color: #8c52ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-portfolio-links a + a::before {
  content: none;
}

.nav-portfolio-links a:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.detail-menu {
  position: fixed;
  z-index: 30;
  top: 18px;
  right: 18px;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.detail-menu-toggle {
  position: relative;
  width: 44px;
  height: 46px;
  border: 1px solid rgba(140, 82, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.1);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.detail-menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #8c52ff;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.detail-menu-toggle span:nth-child(1) {
  top: 16px;
}

.detail-menu-toggle span:nth-child(2) {
  top: 22px;
}

.detail-menu-toggle span:nth-child(3) {
  top: 28px;
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.detail-menu.is-open .detail-menu-toggle span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

.detail-menu-links {
  display: grid;
  min-width: 230px;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(140, 82, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(25, 25, 25, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.detail-menu.is-open .detail-menu-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.detail-menu-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #8c52ff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.detail-menu-links a:hover {
  background: #8c52ff;
  color: #fff;
}

.case-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 92px 8%;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(140, 82, 255, 0.9), rgba(140, 82, 255, 0.3)),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(420px, 720px);
  align-items: center;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}

.humber-logo {
  display: grid;
  width: 320px;
  height: 320px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #8c52ff;
  background: none;
  font-family: "Horizon", Arial, sans-serif;
  font-size: 78px;
}

.humber-logo img {
  display: block;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #ffde59;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2 {
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.9;
}

.hero-copy p {
  max-width: 720px;
  color: #fff;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.35;
  font-weight: 300;
}

.hero-stats div,
.mini-stats div,
.results-grid div {
  padding-top: 14px;
  border-top: 3px solid currentColor;
}

.hero-stats strong,
.mini-stats strong,
.results-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.hero-stats span,
.mini-stats span,
.results-grid span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 300;
}

.section-pad {
  padding: 72px 10%;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
  color: #8c52ff;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 0.95;
}

.section-heading p,
.strategy-grid p,
.discipline-copy p,
.testimonial-grid blockquote {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

.strategy-grid {
  max-width: 1100px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strategy-grid article {
  padding: 28px;
  border: 2px solid rgba(140, 82, 255, 0.26);
  border-radius: 8px;
  color: #8c52ff;
  background: rgba(140, 82, 255, 0.045);
}

.strategy-grid h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.results-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  color: #8c52ff;
  text-align: center;
}

.case-gateway {
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
    rgba(140, 82, 255, 0.035);
  color: #8c52ff;
}

.case-gateway .section-heading {
  margin-bottom: 48px;
}

.gateway-flow {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  color: #8c52ff;
  text-align: left;
  counter-reset: gateway-step;
}

.gateway-flow a {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(140, 82, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #8c52ff;
  text-decoration: none;
  counter-increment: gateway-step;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gateway-flow a::before {
  content: counter(gateway-step, decimal-leading-zero);
  display: inline-grid;
  width: 38px;
  height: 28px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 0;
  background: #ffc700;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.gateway-flow h3 {
  margin-bottom: 18px;
  color: #8c52ff;
  font-size: 30px;
  line-height: 1;
  font-weight: 650;
}

.gateway-flow p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 28px;
  color: #8c52ff;
  font-size: 17px;
  line-height: 1.58;
  font-weight: 300;
  text-align: left;
  text-wrap: pretty;
}

.gateway-arrow {
  margin-top: auto;
  display: inline-grid;
  width: 38px;
  height: 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #8c52ff;
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gateway-flow a:hover {
  border-color: rgba(140, 82, 255, 0.42);
  box-shadow: 0 16px 34px rgba(140, 82, 255, 0.12);
  transform: translateY(-2px);
}

.gateway-flow a:hover .gateway-arrow {
  background: #8c52ff;
  color: #fff;
  transform: translateY(6px);
}

.purple-section {
  background: #8c52ff;
  color: #fff;
}

.purple-section .section-heading h2 {
  color: #fff;
}

.section-pad:not(.purple-section) .discipline-copy {
  color: #8c52ff;
}

.soft-section {
  background: rgba(140, 82, 255, 0.06);
}

.discipline-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(420px, 590px);
  align-items: center;
  justify-content: center;
  gap: 90px;
}

.discipline-grid.reverse {
  max-width: 1280px;
  grid-template-columns: minmax(400px, 520px) minmax(520px, 660px);
}

.discipline-grid.reverse .photo-slideshow {
  order: 2;
}

.discipline-grid.reverse .discipline-copy {
  order: 1;
}

.discipline-copy h2 {
  margin-bottom: 16px;
  color: currentColor;
  font-size: 34px;
  line-height: 1;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.discipline-copy p {
  max-width: 590px;
  margin-bottom: 34px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 34px;
  max-width: 520px;
  color: currentColor;
}

.social-examples {
  max-width: 1512px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content minmax(480px, 540px);
  justify-content: center;
  align-items: stretch;
  gap: 76px;
  text-align: left;
}

.social-examples .category-copy {
  min-height: 512px;
  justify-content: flex-start;
  transform: none;
}

.examples-subheading {
  max-width: 1512px;
  margin: 90px auto 52px;
  text-align: center;
}

#social > .examples-subheading {
  position: relative;
  left: 50%;
  width: calc(100vw - 40px);
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
}

.category-copy h3 {
  display: inline-block;
  margin-bottom: 46px;
  padding-bottom: 5px;
  background-image: linear-gradient(#ffc700, #ffc700);
  background-repeat: no-repeat;
  background-position: 0 calc(100% + 2px);
  background-size: 100% 9px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.examples-subheading h3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.examples-subheading h3::before,
.examples-subheading h3::after {
  content: "";
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.category-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 540px;
  min-width: 0;
  align-self: stretch;
  padding: 0;
}

.category-copy h3 {
  width: fit-content;
  align-self: flex-start;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: 24px;
  text-align: left;
}

.category-copy p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
}

.category-copy .category-lede {
  max-width: 520px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 400;
}

.category-notes {
  display: grid;
  gap: 22px;
  position: relative;
}

.category-notes article {
  position: relative;
  display: block;
  min-height: 0;
  padding-left: 30px;
}

.category-notes article::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 15px;
  bottom: -22px;
  width: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.category-notes article:last-child::before {
  display: none;
}

.category-notes article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid #ffc700;
  border-radius: 50%;
  background: #8c52ff;
}

.category-copy h4 {
  margin-bottom: 8px;
  color: #ffc700;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-social-examples {
  max-width: 1512px;
  margin: 88px auto 0;
  text-align: center;
}

.photo-usage-divider {
  max-width: 1512px;
  margin: 0 auto 52px;
}

.photo-usage-divider h3 {
  color: #8c52ff;
}

.photo-usage-divider h3::before,
.photo-usage-divider h3::after {
  background: rgba(140, 82, 255, 0.45);
}

.usage-note {
  max-width: 760px;
  margin: -26px auto 64px;
  color: #8c52ff;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 390;
  text-align: center;
}

#photography .discipline-copy p {
  color: #191919;
}

.usage-note::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 0 auto 16px;
  background: #ffc700;
}

.phone-carousel {
  position: relative;
  width: 851px;
  max-width: 100%;
  margin: 0 auto;
}

.wide-carousel {
  width: min(100%, 1342px);
}

.phone-row {
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.phone-row::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.content-card {
  display: grid;
  flex: 0 0 246px;
  width: 246px;
  justify-items: center;
  gap: 18px;
  padding: 0;
  scroll-snap-align: start;
}

.phone-carousel .mini-phone {
  width: 246px;
  height: 507px;
  padding: 10px;
  border-radius: 48px;
  box-shadow:
    0 5px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone-carousel .mini-phone .screen {
  border-radius: 39px;
}

.engagement-meta {
  display: none;
  justify-content: center;
  gap: 0;
  width: 100%;
  color: currentColor;
  font-size: 13px;
  font-weight: 400;
}

.engagement-meta span {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 42%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #8c52ff;
  color: #fff;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  background: #ffc700;
  color: #8c52ff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: -22px;
}

.carousel-prev.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-next {
  right: -22px;
  background: #8c52ff;
  color: #fff;
  border-color: #fff;
  animation: carouselArrowHint 5200ms ease-in-out infinite;
}

@keyframes carouselArrowHint {
  0%,
  72%,
  100% {
    box-shadow: none;
    transform: translateY(-50%) scale(1);
  }

  84% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.08);
  }
}

.iphone {
  position: relative;
  width: 230px;
  height: 476px;
  padding: 10px;
  border-radius: 48px;
  background: linear-gradient(145deg, #1c1c1e, #000);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.22),
    inset 0 0 2px rgba(255, 255, 255, 0.08);
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: #000;
}

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

.instagram-phone {
  background: #fff;
}

.instagram-phone .notch {
  z-index: 2;
}

.instagram-embed-frame {
  display: block;
  background: #fff;
  transform: scale(1.09);
  transform-origin: top center;
}

.screen.fill-video iframe {
  left: 50%;
  width: auto;
  min-width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  transform: translateX(-50%);
}

.has-custom-video iframe {
  pointer-events: none;
}

.has-custom-video:not(.is-playing) iframe {
  pointer-events: none;
}

.has-custom-video.is-arming iframe {
  pointer-events: none;
}

.custom-video-cover,
.has-custom-video::after {
  position: absolute;
  inset: 0;
  transition: opacity 220ms ease;
}

.custom-video-cover {
  z-index: 3;
  background: transparent;
  pointer-events: none;
}

.has-custom-video::after {
  content: "";
  z-index: 4;
  background: linear-gradient(180deg, rgba(20, 10, 40, 0.12), rgba(20, 10, 40, 0.38));
  pointer-events: none;
}

.has-custom-video:not(.is-playing)::after {
  opacity: 0;
}

.has-custom-video.is-playing .custom-video-cover,
.has-custom-video.is-playing::after {
  opacity: 0;
}

.has-custom-video.is-playing .custom-video-cover {
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.custom-video-play {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(140, 82, 255, 0.16);
  color: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.custom-video-play span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid currentColor;
}

.custom-video-play:hover {
  color: #ffc700;
  border-color: rgba(255, 199, 0, 0.45);
  background: rgba(140, 82, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.05);
}

.custom-video-mute {
  position: absolute;
  z-index: 8;
  top: 20px;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(20, 10, 40, 0.16);
  color: #fff;
  cursor: pointer;
  opacity: 0.58;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.custom-video-mute:hover {
  background: rgba(140, 82, 255, 0.48);
  color: #ffc700;
  opacity: 0.92;
  transform: translateY(-1px);
}

.has-custom-video.is-playing .custom-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.has-custom-video.is-paused .custom-video-play {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.has-custom-video.is-playing.controls-idle .custom-video-play,
.has-custom-video.is-playing.controls-idle:hover .custom-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.custom-video-controls {
  position: absolute;
  z-index: 8;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-video-mini-toggle {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.25));
}

.custom-video-mini-toggle span {
  width: 13px;
  height: 15px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.has-custom-video.is-paused .custom-video-mini-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  border-right: 0;
}

.custom-video-mini-toggle:hover {
  color: #ffc700;
}

.custom-video-timeline {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.custom-video-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.custom-video-timeline span {
  position: relative;
  display: block;
  width: 0%;
  height: 4px;
  border-radius: 999px;
  background: #ffc700;
}

.custom-video-timeline span::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #8c52ff;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.custom-video-time {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.has-custom-video.is-playing:hover .custom-video-controls,
.has-custom-video.is-paused .custom-video-controls,
.custom-video-timeline:focus-visible {
  opacity: 1;
  transform: translateY(0);
}


.notch {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  width: 108px;
  height: 25px;
  border-radius: 0 0 15px 15px;
  background: #000;
  transform: translateX(-50%);
}

.notch::before,
.notch::after {
  content: "";
  position: absolute;
  top: 10px;
  border-radius: 999px;
  background: #242424;
}

.notch::before {
  left: 18px;
  width: 7px;
  height: 7px;
}

.notch::after {
  right: 18px;
  width: 26px;
  height: 5px;
}

.video-placeholder,
.glare {
  position: absolute;
  inset: 0;
}

.video-placeholder {
  background: linear-gradient(180deg, #dff5ff 0%, #edf8fb 58%, #bddf71 59%, #7ea000 72%);
}

.glare {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.phone-btn {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: #2a2a2a;
}

.vol-up {
  left: -4px;
  top: 110px;
  height: 36px;
}

.vol-down {
  left: -4px;
  top: 158px;
  height: 36px;
}

.power {
  right: -4px;
  top: 140px;
  height: 62px;
}

.photo-slideshow {
  position: relative;
  isolation: isolate;
  width: min(100%, 660px);
  aspect-ratio: 1.22 / 1;
  overflow: visible;
  border-radius: 8px;
  background: rgba(140, 82, 255, 0.08);
  box-shadow: 0 22px 52px rgba(30, 20, 60, 0.18);
}

.photo-slideshow::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 76%;
  height: 76%;
  background: #ffc700;
}

.photo-slideshow::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(140, 82, 255, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.photo-slideshow img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 950ms ease;
}

.photo-slideshow img.is-exiting {
  z-index: 1;
  opacity: 1;
}

.photo-slideshow img.is-active {
  z-index: 2;
  opacity: 1;
}

.photo-slideshow img:first-child {
  object-position: center 38%;
}

.testimonials.is-hidden,
.testimonials[hidden] {
  display: none;
}

cite strong,
cite span {
  display: block;
}

cite strong {
  font-weight: 650;
}

cite span {
  margin-top: 4px;
  font-weight: 400;
}

.laptop {
  position: relative;
  width: min(100%, 840px);
  padding-bottom: 34px;
}

#website .discipline-grid {
  grid-template-columns: minmax(520px, 760px) minmax(360px, 500px);
  max-width: 1320px;
}

.managed-site-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  color: #ffc700;
  font-size: 17px;
  font-weight: 760;
  text-decoration: none;
}

.managed-site-link:hover {
  color: #fff;
}

.managed-site-link i {
  font-size: 13px;
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 14px solid #171717;
  border-bottom-width: 20px;
  border-radius: 18px 18px 10px 10px;
  background: #171717;
  box-shadow:
    0 26px 55px rgba(25, 10, 55, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.laptop-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: #2c2c2c;
  transform: translateX(-50%);
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 0 0 10px;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8c52ff;
  opacity: 0.35;
}

.site-placeholder {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  height: calc(100% - 19px);
}

.website-preview-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #171717;
}

.website-loop-fade {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 20px;
  height: calc(100% - 20px);
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.website-loop-fade.is-active {
  opacity: 1;
  transition: opacity 1300ms ease;
}

.site-placeholder div {
  background: linear-gradient(145deg, #f2efff, #d9d1ff);
}

.site-placeholder div:first-child {
  grid-row: span 2;
}

.laptop-base {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 112%;
  height: 22px;
  border-radius: 0 0 44px 44px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.16) 46% 54%, transparent 92% 100%),
    linear-gradient(180deg, #4d4d4d 0%, #1f1f1f 48%, #0f0f0f 100%);
  box-shadow: 0 16px 28px rgba(20, 10, 45, 0.2);
  transform: translateX(-50%);
}

.laptop-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 86px;
  height: 7px;
  border-radius: 0 0 12px 12px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

blockquote {
  padding: 34px;
  border: 2px solid rgba(140, 82, 255, 0.22);
  border-radius: 18px;
  color: #8c52ff;
  background: rgba(140, 82, 255, 0.045);
}

cite {
  display: block;
  margin-top: 24px;
  color: #8c52ff;
  font-style: normal;
  font-weight: 600;
}

.testimonial-grid blockquote {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 300;
}

@media (max-width: 980px) {
  .portfolio-menu-open {
    overflow: hidden;
  }

  .nav-portfolio-links {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    width: auto;
    max-width: none;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 92px 32px 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: none;
    backdrop-filter: blur(18px);
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-portfolio.is-open .nav-portfolio-toggle i {
    transform: rotate(90deg);
  }

  .nav-portfolio-links a {
    width: min(100%, 340px);
    min-height: 58px;
    border-width: 0 0 1px;
    border-color: rgba(140, 82, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #8c52ff;
    font-size: clamp(19px, 5vw, 30px);
    text-align: center;
  }

  .nav-portfolio-links a:last-child {
    border-bottom: 0;
  }

  .nav-portfolio-links a + a::before,
  .nav-portfolio-links::before,
  .nav-portfolio-links::after {
    display: none;
  }

  .case-nav {
    top: 14px;
    left: 14px;
  }

  .nav-portfolio-links {
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: min(260px, calc(100vw - 28px));
    max-width: none;
    border-radius: 18px;
    transform: translateY(-6px);
  }

  .nav-portfolio-links::before {
    right: auto;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 12px;
  }

  .nav-portfolio-links a + a::before {
    top: 0;
    left: 13px;
    width: calc(100% - 26px);
    height: 1px;
    transform: none;
  }

  .nav-portfolio:hover .nav-portfolio-links,
  .nav-portfolio:focus-within .nav-portfolio-links {
    transform: translateY(0);
  }

  .case-hero,
  .strategy-grid,
  .gateway-flow,
  .discipline-grid,
  .discipline-grid.reverse {
    grid-template-columns: 1fr;
  }

  .case-hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 34px;
  }

  .humber-logo {
    width: 150px;
    height: 150px;
    font-size: 68px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gateway-flow {
    max-width: 620px;
  }

  .discipline-grid,
  .discipline-grid.reverse {
    justify-items: center;
    gap: 46px;
    text-align: center;
  }

  .social-examples {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 38px;
    text-align: center;
  }

  .category-copy {
    max-width: 540px;
  }

  .category-copy h3 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .discipline-grid.reverse .photo-slideshow,
  .discipline-grid.reverse .discipline-copy {
    order: initial;
  }

  .mini-stats {
    margin: 0 auto;
  }

  .phone-carousel {
    width: min(100%, 760px);
  }

  .wide-carousel {
    width: min(100%, 760px);
  }

  .content-card {
    flex-basis: 270px;
    width: 270px;
  }

  .phone-carousel .mini-phone {
    width: 270px;
    height: 558px;
    border-radius: 52px;
  }
}

@media (max-width: 620px) {
  .section-pad,
  .case-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .case-nav {
    top: 12px;
    left: 12px;
  }

  .nav-home,
  .nav-portfolio-toggle {
    min-height: 40px;
  }

  .nav-home {
    width: 40px;
  }

  .nav-portfolio-toggle {
    padding: 0 13px 0 15px;
  }

  .nav-portfolio-toggle span,
  .nav-portfolio-links a {
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .results-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .gateway-flow a {
    padding: 24px;
  }

  .gateway-flow h3 {
    font-size: 26px;
  }

  .gateway-flow p {
    font-size: 16px;
  }

  .social-examples {
    margin-top: 64px;
  }

  #social > .examples-subheading {
    width: 100%;
  }

  .photo-social-examples {
    margin-top: 64px;
  }

  .phone-carousel {
    width: min(100%, 300px);
  }

  .wide-carousel {
    width: min(100%, 300px);
  }

  .content-card {
    flex-basis: 285px;
    width: 285px;
  }

  .phone-carousel .mini-phone {
    width: 285px;
    height: 589px;
    border-radius: 54px;
  }

  .carousel-prev {
    left: -12px;
  }

  .carousel-next {
    right: -12px;
  }

  .humber-logo {
    width: 140px;
    height: 140px;
    font-size: 62px;
  }

  .photo-slideshow {
    width: 100%;
    max-width: 462px;
  }

  blockquote {
    padding: 30px 24px;
  }

  .testimonial-grid blockquote {
    font-size: 20px;
  }
}

.contact {
  padding: 80px 10%;
  background: #f7f5fb;
  color: #8c52ff;
  text-align: center;
}

.contact .section-title {
  margin-bottom: 118px;
  color: #8c52ff;
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 0.95;
  font-weight: 400;
}

.email-link {
  display: inline-block;
  margin-bottom: 70px;
  color: #191919;
  font-size: clamp(15px, 2.3vw, 25px);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.email-link:hover {
  color: #8c52ff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.social-links a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid #8c52ff;
  border-radius: 50%;
  color: #8c52ff;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.social-links i {
  font-size: 27px;
  line-height: 1;
}

.floating-contact {
  position: fixed;
  z-index: 19;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid #8c52ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #8c52ff;
  box-shadow: 0 18px 45px rgba(25, 25, 25, 0.14);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.floating-contact:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

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

  .email-link {
    max-width: none;
    font-size: clamp(18px, 4vw, 34px);
    line-height: 1;
    white-space: nowrap;
  }

  .floating-contact {
    right: 18px;
    bottom: 18px;
    min-height: 52px;
    padding: 0 24px;
  }
}


/* Final shared detail nav override */
.case-nav .nav-home,
.case-nav .nav-portfolio-toggle {
  min-height: 42px;
  border: 2px solid #8c52ff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  color: #8c52ff;
}

.case-nav .nav-home {
  width: 42px;
}

.case-nav .nav-portfolio-toggle {
  padding: 0 15px 0 17px;
}

.case-nav .nav-portfolio-toggle span {
  color: #8c52ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.case-nav .nav-home:hover,
.case-nav .nav-portfolio:hover .nav-portfolio-toggle,
.case-nav .nav-portfolio:focus-within .nav-portfolio-toggle {
  background: #8c52ff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.12);
  transform: translateY(-2px);
}

/* Responsive polish pass */
@media (max-width: 980px) {
  .hero-copy {
    width: 100%;
    max-width: 680px;
  }

  .hero-content {
    width: 100%;
    max-width: 680px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1 {
    font-size: clamp(44px, 8vw, 64px);
  }

  .hero-copy p,
  .section-heading p,
  .discipline-copy p,
  .category-copy p {
    font-size: clamp(16px, 2.2vw, 18px);
  }

  .gateway-flow,
  .discipline-grid,
  .discipline-grid.reverse,
  .social-examples,
  .photo-social-examples {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  .category-copy,
  .discipline-copy {
    width: min(100%, 620px);
  }

  .laptop {
    width: min(100%, 760px);
  }
}

@media (max-width: 620px) {
  .case-nav {
    max-width: calc(100vw - 24px);
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.95;
  }

  .section-heading h2,
  .examples-subheading h3 {
    font-size: clamp(28px, 8.4vw, 40px);
  }

  .gateway-flow a,
  .discipline-copy,
  .category-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .phone-carousel,
  .wide-carousel {
    width: min(100%, 320px);
    overflow: hidden;
    padding: 0 2px;
  }

  .phone-row {
    contain: layout paint;
    width: 100%;
  }

  .content-card {
    flex: 0 0 min(78vw, 285px);
    width: min(78vw, 285px);
  }

  .phone-carousel .mini-phone {
    width: min(78vw, 285px);
    height: auto;
    aspect-ratio: 285 / 589;
  }

  .carousel-prev {
    left: -6px;
  }

  .carousel-next {
    right: -6px;
  }

  .photo-slideshow {
    width: min(100%, 520px);
  }

  .laptop {
    width: 100%;
    max-width: 520px;
  }

  .laptop-screen {
    width: 100%;
    border-width: 10px;
    border-bottom-width: 16px;
    border-radius: 14px 14px 8px 8px;
  }

  #website .discipline-grid {
    width: min(100%, 560px);
    gap: 38px;
  }

  #website .discipline-copy {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  #website .discipline-copy p {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .managed-site-link {
    justify-content: center;
  }

  .email-link {
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 0;
    white-space: nowrap;
  }
}

/* Final mobile portfolio menu */
@media (max-width: 980px) {
  .portfolio-menu-open {
    overflow: hidden;
  }

  .nav-portfolio-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    width: auto;
    max-width: none;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 92px 32px 42px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: none;
    backdrop-filter: blur(18px);
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-portfolio-links a {
    width: min(100%, 340px);
    min-height: 58px;
    border-width: 0 0 1px;
    border-color: rgba(140, 82, 255, 0.2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #8c52ff;
    font-size: clamp(19px, 5vw, 30px);
    text-align: center;
  }

  .nav-portfolio-links a:last-child {
    border-bottom: 0;
  }

  .nav-portfolio-links::before,
  .nav-portfolio-links::after,
  .nav-portfolio-links a + a::before {
    display: none;
  }

  .case-nav {
    z-index: 70;
  }

  .nav-home,
  .nav-portfolio-toggle {
    position: relative;
    z-index: 72;
  }
}

/* Desktop nav restore */
.nav-portfolio-toggle::before,
.nav-portfolio-toggle::after {
  content: none;
}

.nav-label,
.nav-chevron {
  display: inline-flex;
}

.nav-label {
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-chevron {
  color: inherit;
  font-size: 10.5px;
  transition: transform 180ms ease;
}

.hamburger-lines {
  display: none;
}

@media (max-width: 980px) {
  .nav-label,
  .nav-chevron {
    display: none;
  }

  .hamburger-lines {
    display: inline-flex;
  }
}

/* Desktop portfolio hover restore */
@media (min-width: 981px) {
  .nav-portfolio:hover .nav-portfolio-links,
  .nav-portfolio:focus-within .nav-portfolio-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-portfolio:hover .nav-chevron,
  .nav-portfolio:focus-within .nav-chevron {
    transform: rotate(90deg);
  }

  .nav-portfolio-links a[href="#contact"],
  .nav-portfolio-links a[href="../index.html#contact"] {
    display: none;
  }
}

/* Final case-page nav tuning */
.case-nav .nav-home,
.case-nav .nav-portfolio-toggle {
  border-width: 2px;
  border-color: #8c52ff;
}

@media (max-width: 980px) {
  .case-hero {
    padding-top: 112px;
  }
}

@media (max-width: 560px) {
  .case-hero {
    padding-top: 104px;
  }
}

/* Final mobile/tablet case navigation and web management layout */
@media (max-width: 980px) {
  .case-nav .nav-home {
    display: none;
  }

  .case-nav {
    left: 14px;
    gap: 0;
  }

  .case-nav .nav-portfolio-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }

  .case-nav .nav-label,
  .case-nav .nav-chevron,
  .case-nav .nav-portfolio-toggle > i {
    display: none !important;
  }

  .case-nav .hamburger-lines {
    display: inline-flex !important;
    width: 18px;
    height: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .case-nav .hamburger-lines span {
    display: block !important;
    width: 100%;
    height: 2px;
    padding: 0;
    border-radius: 999px;
    background: currentColor !important;
    font-size: 0;
    line-height: 0;
  }

  #website .discipline-grid,
  #website .discipline-grid.reverse {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 34px;
  }

  #website .discipline-copy {
    width: min(100%, 620px);
    text-align: center;
  }

  #website .discipline-copy p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  #website .managed-site-link {
    justify-content: center;
  }

  #website .laptop {
    width: min(100%, 680px);
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  #website .discipline-grid,
  #website .discipline-grid.reverse {
    width: 100%;
    gap: 28px;
  }

  #website .laptop {
    width: min(100%, 420px);
    max-width: calc(100vw - 32px);
    padding-bottom: 24px;
  }

  #website .laptop-screen {
    border-width: 8px;
    border-bottom-width: 13px;
    border-radius: 12px 12px 7px 7px;
  }

  #website .laptop-base {
    width: 106%;
    height: 16px;
    bottom: 8px;
  }
}

@media (max-width: 980px) {
  .nav-portfolio:not(.is-open) .nav-portfolio-links {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
  }

  .nav-portfolio.is-open .nav-portfolio-links {
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(36px, 7vw, 56px);
    line-height: 0.98;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 0.98;
    overflow-wrap: normal;
  }
}
