@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;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  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;
}


.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-portfolio {
  position: relative;
}

.nav-portfolio-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 17px;
  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;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-portfolio-toggle::before {
  content: "Portfolio";
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-portfolio-toggle::after {
  content: "▾";
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  transform: translateY(1px);
}

.hamburger-lines {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 16px;
  height: 14px;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.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;
  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;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-portfolio.is-open .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-portfolio:hover .nav-portfolio-toggle,
.nav-portfolio:focus-within .nav-portfolio-toggle,
.nav-portfolio.is-open .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,
.nav-portfolio.is-open .nav-portfolio-toggle .hamburger-lines span {
  color: #fff;
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.nav-portfolio.is-open .hamburger-lines span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-portfolio-links a {
  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:hover {
  background: #8c52ff;
  color: #fff;
  transform: translateY(-2px);
}

.floating-categories {
  display: none !important;
}

.hero {
  position: relative;
  padding: 0;
  background: #fff;
  height: clamp(420px, 54vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(140, 82, 255, 0.66), rgba(140, 82, 255, 0));
  pointer-events: none;
}

.hero-gif {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .hero {
    height: clamp(360px, 64vw, 500px);
  }

  .hero-gif {
    object-fit: contain;
    object-position: center;
  }
}

.hero-scroll {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 180ms ease;
}

.hero-scroll .arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  animation: arrow-bounce 1.5s ease-in-out infinite;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-scroll:hover .arrow {
  background: #fff;
  border-color: #fff;
  color: #8c52ff;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

.about-me {
  padding: 96px 10% 100px;
  background: #fff;
}

.about-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  padding: 34px 0;
}

.intro {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  padding-left: 0;
  text-align: center;
}

.about-inner::before {
  content: none;
}

.about-inner::after {
  content: none;
}

.profile {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}

.profile::before {
  content: none;
}

.profile::after {
  content: none;
}

.profile-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(40, 20, 80, 0.09);
}

.intro::before {
  content: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4px;
  border-bottom: 3px solid #ffc700;
  color: #8c52ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: 0.95;
  color: #8c52ff;
  font-weight: 600;
  text-align: center;
}

.intro h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.intro h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1px;
  right: 1px;
  bottom: -4.4px;
  height: 9px;
  background: #ffc700;
}

.intro p {
  max-width: 790px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  color: #191919;
  font-size: clamp(17px, 1.55vw, 18px);
  line-height: 1.44;
  font-weight: 420;
  text-align: center;
}

.intro p span {
  display: inline;
  white-space: normal;
}

.category-jump {
  padding: 28px 0 26px;
  background: #fff;
  color: #8c52ff;
  text-align: center;
}

.category-label {
  width: 100%;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #191919;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-label::before,
.category-label::after {
  content: "";
  height: 2px;
  background: rgba(140, 82, 255, 0.45);
}

.category-links,
.floating-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.category-links {
  padding: 0 10%;
}

.category-links a,
.floating-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-links a {
  min-height: 48px;
  padding: 0 22px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 16.5px;
  background: rgba(140, 82, 255, 0.05);
}

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

.floating-categories {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(140, 82, 255, 0.18);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #8c52ff;
  box-shadow: 0 12px 32px rgba(25, 25, 25, 0.11);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translate(100%, -50%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.floating-links {
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.floating-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #8c52ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-categories.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(calc(100% - 42px), -50%);
}

.floating-categories.is-visible:hover,
.floating-categories.is-visible:focus-within,
.floating-categories.is-peeking {
  transform: translate(0, -50%);
}

.floating-links a {
  min-height: 37px;
  justify-content: center;
  padding: 0 14px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: #8c52ff;
  background: rgba(140, 82, 255, 0.05);
  font-size: 13px;
  font-weight: 500;
}

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

.floating-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid #8c52ff;
  border-radius: 50%;
  background: #fff;
  color: #8c52ff;
  cursor: pointer;
}

.floating-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.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: 14px;
  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);
}

.smm,
.content,
.videography,
.design {
  padding: 70px 10% 100px;
  text-align: center;
}

.smm,
.videography {
  background: #8c52ff;
  color: #fff;
}

.content,
.design {
  background: #fff;
  color: #8c52ff;
}

.design .section-title {
  font-size: clamp(42px, 5vw, 65px);
}

.section-title {
  margin-bottom: 90px;
  font-family: "Horizon", "Arial Black", Arial, sans-serif;
  font-size: 65px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  padding: 5px;
}

.case {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 10px 34px 90px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 75px;
  text-align: left;
}

.smm .case,
.content .case {
  max-width: 855px;
  padding: 34px 0;
  display: grid;
  justify-content: center;
  gap: 75px;
}

.smm .case {
  grid-template-columns: 220px minmax(0, 560px);
}

.content .case {
  grid-template-columns: 224px minmax(0, 560px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.iphone {
  position: relative;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #1c1c1e, #000);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.24),
    inset 0 0 2px rgba(255, 255, 255, 0.08);
}

.phone {
  width: 220px;
  height: 455px;
  padding: 9px;
  border-radius: 44px;
}

.content .phone {
  width: 224px;
  height: 463px;
}

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

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

.screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.phone-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.screen.fill-video video {
  inset: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transform: none;
}

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

.custom-youtube-video iframe {
  pointer-events: none;
  transition: opacity 180ms ease;
}

.custom-youtube-video {
  background-image: url("https://i.ytimg.com/vi/FPQj3rRbOw0/hqdefault.jpg");
  background-size: cover;
  background-position: center;
}

.custom-youtube-video:not(.is-playing) iframe {
  opacity: 0;
}

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

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

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

.custom-video-cover,
.custom-video-surface {
  z-index: 3;
  background: transparent;
}

.custom-video-cover {
  pointer-events: none;
}

.custom-video-surface {
  z-index: 6;
  cursor: pointer;
}

.has-custom-video::after,
.custom-youtube-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,
.custom-youtube-video:not(.is-playing)::after {
  opacity: 0;
}

.has-custom-video.is-playing .custom-video-cover,
.has-custom-video.is-playing::after,
.custom-youtube-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);
}

.has-custom-video.is-playing .custom-video-play,
.custom-youtube-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,
.custom-youtube-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,
.custom-youtube-video.is-playing.controls-idle .custom-video-play,
.custom-youtube-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,
.custom-youtube-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-youtube-video.is-playing:hover .custom-video-controls,
.custom-youtube-video.is-paused .custom-video-controls,
.custom-video-timeline:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-youtube-video.is-playing.controls-idle:hover .custom-video-controls {
  opacity: 0;
  transform: translateY(8px);
}


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

.notch::before {
  content: "";
  position: absolute;
  left: 14%;
  top: 38%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #222;
}

.notch::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 42%;
  width: 30px;
  height: 5px;
  border-radius: 4px;
  background: #222;
}

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

.vol-up {
  left: -4px;
  top: 22.5%;
  height: 7.25%;
}

.vol-down {
  left: -4px;
  top: 32.25%;
  height: 7.25%;
}

.power {
  right: -4px;
  top: 27.5%;
  height: 12%;
}

.glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent 45%);
  pointer-events: none;
}

.media-frame,
.design-board {
  flex: 0 0 300px;
  min-height: 340px;
  border: 9px solid #111;
  border-radius: 28px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

.media-frame {
  position: relative;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.videography .media-frame,
.videography .video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.vertical-video-card {
  align-items: center;
}

.vertical-video-card .video-embed {
  width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

.vertical-video-card .project-copy {
  width: 100%;
  align-self: center;
  text-align: center;
}

.media-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  transform: translate(-50%, -50%);
}

.media-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #8c52ff;
  transform: translate(-36%, -50%);
}

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

.design-board span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.motion-embed {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #d9d9d9;
  box-shadow: 0 10px 0 rgba(140, 82, 255, 0.12);
}

.motion-embed video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concert-preview {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 199, 0, 0.22), transparent 32%),
    linear-gradient(180deg, #151019 0%, #09070d 72%, #050407 100%);
  box-shadow: 0 10px 0 rgba(140, 82, 255, 0.12);
}

.concert-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(140, 82, 255, 0.2), transparent 20%, transparent 80%, rgba(140, 82, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.concert-preview-light {
  position: absolute;
  top: -22%;
  width: 36%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 199, 0, 0.18), transparent 78%);
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.concert-preview-light-left {
  left: 4%;
  transform: rotate(18deg);
}

.concert-preview-light-right {
  right: 4%;
  transform: rotate(-18deg);
}

.concert-preview-screens {
  position: absolute;
  z-index: 1;
  inset: 16% 8% 14%;
  display: grid;
  grid-template-columns: 0.36fr 1fr 0.36fr;
  gap: 5%;
  align-items: center;
}

.concert-preview-screen {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #111;
  box-shadow:
    0 0 0 1px rgba(255, 199, 0, 0.32),
    0 12px 28px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(140, 82, 255, 0.24);
}

.concert-preview-screen iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 124%;
  height: 124%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.concert-preview-side {
  aspect-ratio: 384 / 1080;
}

.concert-preview-side iframe {
  width: 104%;
  height: 112%;
}

.concert-preview-main {
  aspect-ratio: 1 / 1;
}

.project-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  text-align: left;
}

.video-showcase {
  max-width: 1180px;
  margin: 0 auto 110px;
  text-align: left;
}

.videography .video-showcase {
  margin-bottom: 62px;
}

.videography .video-secondary-grid {
  margin-bottom: 0;
}

.video-work-divider {
  max-width: 1180px;
  margin: 0 auto 48px;
  color: #fff;
}

.video-work-divider::after {
  opacity: 0.44;
}

.design-showcase {
  max-width: 1180px;
  margin: 0 auto 96px;
  text-align: left;
}

.video-showcase .project-card,
.design-showcase .project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.7fr);
  align-items: stretch;
  gap: 34px;
}

.video-showcase .project-media,
.design-showcase .project-media {
  min-height: 0;
}

.video-showcase .project-media {
  width: 100%;
  justify-self: stretch;
}

.video-showcase .project-copy,
.design-showcase .project-copy {
  justify-content: center;
}

.design-showcase .design-board {
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(140, 82, 255, 0.12);
}

.design-secondary-grid,
.graphic-design-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  text-align: left;
}

.design-secondary-grid .project-card,
.graphic-design-grid .project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 24px;
}

.design-secondary-grid .project-media,
.graphic-design-grid .project-media {
  min-height: 260px;
}

.design-secondary-grid .design-board,
.graphic-design-grid .design-board {
  min-height: 260px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 0 rgba(140, 82, 255, 0.12);
}

.design-secondary-grid .project-copy,
.graphic-design-grid .project-copy {
  justify-content: flex-start;
}

.graphic-design-grid {
  margin-top: 42px;
}

.graphic-cover {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 8px;
  background: #d9d9d9;
  box-shadow: 0 10px 0 rgba(140, 82, 255, 0.12);
}

.graphic-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fading-preview,
.psa-cover {
  position: relative;
  padding: 0;
  background: #fff;
}

.fading-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  opacity: 0;
  animation: previewFade 7s ease-in-out infinite;
}

.fading-preview img:first-child {
  opacity: 1;
}

.fading-preview img:nth-child(2) {
  animation-delay: 3.5s;
}

.psa-cover img {
  object-fit: cover;
  border-radius: 0;
}

@keyframes previewFade {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section-mini-divider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  text-align: left;
}

.section-mini-divider span {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-mini-divider::after {
  content: "";
  height: 6px;
  flex: 1;
  background: currentColor;
  opacity: 0.22;
}

.design-motion-divider,
.design-graphic-divider {
  color: #8c52ff;
}

.design-graphic-divider {
  margin-top: 62px;
  margin-bottom: 0;
}

.video-secondary-grid {
  position: relative;
  max-width: 1180px;
  height: auto;
  grid-template-columns: minmax(300px, 330px) minmax(0, 790px);
  gap: 56px;
  align-items: start;
  justify-content: space-between;
}

.video-secondary-grid .project-card {
  height: 100%;
  min-height: 0;
}

.video-secondary-grid .vertical-video-card {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 20px;
  text-align: left;
}

.video-secondary-grid .vertical-video-card .video-embed {
  width: 100%;
  height: calc(100% + 2px);
  aspect-ratio: 9 / 16;
  justify-self: start;
  align-self: stretch;
}

.vertical-phone-media {
  display: flex;
  width: 100%;
  min-height: 0;
  align-items: flex-start;
  justify-content: flex-start;
}

.video-phone {
  width: min(100%, 320px);
  height: auto;
  aspect-ratio: 300 / 620;
  padding: 9px;
  border-radius: 54px;
}

.video-phone .screen iframe {
  background: #000;
}

.vertical-video-embed {
  position: relative;
  overflow: hidden;
  width: min(100%, 320px);
  aspect-ratio: 300 / 620;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
}

.vertical-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-secondary-grid .vertical-video-card .project-copy {
  width: 100%;
  align-self: end;
  text-align: left;
  transform: none;
}

.video-stack {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 38px;
  width: 100%;
}

.video-stack .project-card {
  display: grid;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 18px;
  min-height: 0;
}

.video-stack .project-card:first-child {
  grid-column: auto;
  grid-row: auto;
  padding-top: 0;
}

.video-stack .project-card:last-child {
  grid-column: auto;
  grid-row: auto;
  align-self: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.video-stack .video-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  justify-self: stretch;
}

.video-stack .project-copy {
  width: 100%;
  justify-content: flex-start;
  align-self: start;
  justify-self: start;
  max-width: 650px;
}

.video-stack .project-card:last-child {
  transform: translateY(0);
}

.video-stack .project-card:last-child .project-copy {
  transform: none;
}

.video-secondary-grid .project-copy {
  gap: 6px;
}

.video-secondary-grid .project-copy h3 {
  font-size: 20px;
  margin-bottom: 3px;
}

.video-secondary-grid .project-copy p {
  max-width: 100%;
  margin-bottom: 0;
  line-height: 1.36;
}

.video-secondary-grid .project-type {
  margin-bottom: 5px;
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 24px;
}

.project-media {
  width: 100%;
  min-height: 340px;
  flex: none;
}

.project-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.project-type {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.06;
  font-weight: 600;
}

.project-copy p {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 350;
}

.project-copy .btn {
  margin-top: auto;
}

.videography .project-card {
  color: #fff;
}

.design .project-card {
  color: #8c52ff;
}

.design .project-type,
.design .project-copy p {
  color: #8c52ff;
}

.case-text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}

.smm .case-text {
  min-height: 455px;
}

.content .case-text {
  min-height: 463px;
}

.case-text h3 {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
}

.highlight {
  margin-bottom: 28px;
  color: #ffde59;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}

.desc {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 350;
}

.content-list {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 560px;
  margin: 14px 0 8px;
  padding: 0;
  color: #8c52ff;
  list-style: none;
}

.content-list li {
  display: flex;
  flex: 0 1 152px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.content-list strong {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #8c52ff;
  font-weight: 700;
}

.content-list strong::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px -10px -6px;
  border: 3px solid #ffc700;
  border-radius: 52% 48% 54% 46% / 46% 55% 45% 54%;
  transform: rotate(-2deg);
}

.content-stat-pairs {
  display: grid;
  width: 100%;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 28px;
}

.content-stat-pair {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.content-stat-label {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #8c52ff;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-stat-label::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -7px -10px -6px;
  border: 3px solid #ffc700;
  border-radius: 52% 48% 54% 46% / 46% 55% 45% 54%;
  transform: rotate(-2deg);
}

.content-stat {
  width: 100%;
  padding-top: 14px;
  border-top: 3px solid #8c52ff;
  text-align: center;
}

.content-stat strong {
  display: block;
  color: #8c52ff;
  font-size: 29px;
  line-height: 1;
  font-weight: 600;
}

.content-stat span {
  display: block;
  margin-top: 4px;
  color: #8c52ff;
  font-size: 12px;
  font-weight: 300;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 0 55px;
  justify-content: start;
  margin-bottom: 55px;
  padding: 10px;
}

.smm .stats {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 560px;
  margin-top: auto;
  padding: 10px 0;
}

.smm .stats div {
  flex: 0 1 112px;
  justify-self: start;
  width: 112px;
  max-width: 112px;
}

.stats div {
  justify-self: center;
  width: max-content;
  padding-top: 14px;
  border-top: 3px solid currentColor;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 29px;
  line-height: 1;
  font-weight: 600;
}

.stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 300;
}

.stats .stat-nowrap {
  white-space: nowrap;
}

.stats .stat-long-label {
  font-size: 10.5px;
}

.growth-stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
}

.growth-stat strong span {
  display: inline-block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.growth-stat .stat-start {
  font-weight: 600;
  opacity: 0.8;
}

.growth-stat em {
  color: #ffc700;
  font-style: normal;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 7px 20px;
  border: 3px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn::after {
  content: "→";
  display: inline-block;
  margin-left: 12px;
  transition: transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::after {
  transform: translateX(7px);
}

.smm .btn:hover,
.videography .btn:hover,
.secondary {
  background: #fff;
  color: #8c52ff;
  border-color: #fff;
}

.smm .btn:hover,
.videography .btn:hover {
  color: #8c52ff;
}

.content .btn:hover,
.design .btn:hover {
  background: #8c52ff;
  color: #fff;
  border-color: #8c52ff;
}

.smm .secondary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.examples-title {
  max-width: 1280px;
  margin: 96px auto 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

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

.phones-row {
  max-width: 1420px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 28px;
}

.content-card {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.engagement-meta {
  display: none;
  justify-content: center;
  gap: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.engagement-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mini-phone {
  width: 235px;
  height: 485px;
  padding: 9px;
  border-radius: 47px;
}

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

.mini-phone .notch {
  height: 5.5%;
  border-radius: 0 0 12px 12px;
}

.mini-phone .notch::before {
  width: 4px;
  height: 4px;
}

.mini-phone .notch::after {
  width: 18px;
  height: 4px;
}

.secondary {
  min-width: 140px;
}

.more-btn {
  min-width: 370px;
  width: 370px;
  padding-left: 18px;
  padding-right: 18px;
}

.smm .more-btn {
  width: 370px;
  max-width: 370px;
}

.purple-text {
  color: #8c52ff;
  text-align: center;
}

.content .case-text,
.design .case-text {
  color: #8c52ff;
}

.design .desc {
  color: #8c52ff;
}

.design .project-copy p {
  color: #8c52ff;
}

.content .desc {
  color: #191919;
}

.smm .desc,
.content .desc {
  max-width: 560px;
}

.smm .btn,
.content .btn {
  width: 100%;
  max-width: 560px;
}

.smm .more-btn {
  width: 370px;
  max-width: 370px;
}

.content .desc {
  margin-bottom: 34px;
}

.content .btn {
  margin-top: auto;
}

.content .stats {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 20px;
  padding: 0;
}

.content .stats div {
  flex: 0 1 152px;
  justify-self: start;
  width: 152px;
  max-width: 152px;
  border-top-color: #8c52ff;
  background: transparent;
}

.content .highlight {
  display: inline-block;
  max-width: none;
  padding-bottom: 0;
  color: #ffc700;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  white-space: nowrap;
}

.content .highlight::after {
  content: none;
}

.design .highlight {
  color: #8c52ff;
  max-width: 680px;
  white-space: normal;
}

.dark {
  color: #8c52ff;
}

.outline {
  color: #8c52ff;
}

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

.contact .section-title {
  margin-bottom: 118px;
}

.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;
  text-decoration: none;
}

@media (max-width: 900px) {
  .floating-categories {
    top: 18px;
    right: 18px;
    left: auto;
    bottom: auto;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateY(-8px);
  }

  .floating-categories.is-visible {
    transform: translateY(0);
  }

  .floating-categories.is-open {
    inset: 0;
    transform: none;
  }

  .floating-categories.is-visible:hover,
  .floating-categories.is-visible:focus-within,
  .floating-categories.is-peeking {
    transform: translateY(0);
  }

  .floating-toggle {
    position: relative;
    z-index: 22;
    display: block;
    margin: 18px 18px 0 auto;
  }

  .floating-label {
    display: none;
  }

  .floating-links {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    width: auto;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 90px 28px;
    background: rgba(255, 255, 255, 0.97);
    color: #8c52ff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .floating-categories.is-open .floating-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .floating-links a {
    min-height: auto;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: #191919;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
  }

  .floating-links a:hover {
    background: transparent;
    color: #8c52ff;
    border-color: #8c52ff;
  }

  .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;
    font-size: 14px;
  }

  .about-inner,
  .case {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .about-inner {
    gap: 42px;
  }

  .about-inner::before,
  .about-inner::after {
    display: none;
  }

  .intro {
    padding-left: 0;
  }

  .intro::before {
    display: none;
  }

  .intro,
  .intro p {
    text-align: center;
  }

  .intro p span {
    white-space: normal;
  }

  .desktop-break {
    display: none;
  }

  .case {
    align-items: center;
    gap: 50px;
    padding: 30px 22px;
  }

  .smm .case,
  .content .case {
    display: flex;
    transform: none;
  }

  .content .case {
    padding: 30px 22px;
  }

  .phone {
    width: 190px;
    height: 392px;
  }

  .content .phone {
    width: 190px;
    height: 392px;
  }

  .content .case-text {
    min-height: 0;
    padding: 24px 18px;
  }

  .content .btn {
    margin-top: 0;
  }

  .content-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
  }

  .content-list li {
    min-height: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
    text-align: center;
  }

  .media-frame,
  .design-board {
    flex-basis: auto;
    width: min(100%, 360px);
    min-height: 300px;
  }

  .highlight {
    font-size: clamp(16px, 3vw, 20px);
    white-space: normal;
  }

  .content .highlight {
    max-width: none;
    font-size: clamp(14px, 3.3vw, 20px);
    white-space: nowrap;
  }

  .content .highlight::before {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 28px 42px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats div {
    justify-self: center;
    width: 100%;
    max-width: 170px;
  }

  .phones-row {
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
  }

  .phones-row .content-card {
    width: 240px;
    justify-content: center;
  }

  .project-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    justify-items: center;
  }

  .video-showcase,
  .design-showcase,
  .design-secondary-grid,
  .graphic-design-grid {
    max-width: 640px;
  }

  .video-showcase .project-card,
  .design-showcase .project-card,
  .design-secondary-grid .project-card,
  .graphic-design-grid .project-card {
    display: flex;
    gap: 24px;
  }

  .design-showcase .design-board,
  .design-secondary-grid .design-board,
  .design-secondary-grid .motion-embed,
  .graphic-design-grid .design-board,
  .graphic-design-grid .graphic-cover {
    width: min(100%, 560px);
  }

  .design-secondary-grid,
  .graphic-design-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .video-secondary-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 640px;
  }

  .video-secondary-grid .vertical-video-card,
  .video-stack .project-card:first-child,
  .video-stack .project-card:last-child {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .video-secondary-grid .project-card,
  .video-secondary-grid .vertical-video-card,
  .video-stack .project-card {
    display: flex;
    max-width: none;
    gap: 24px;
  }

  .video-stack {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    height: auto;
    gap: 42px;
    width: 100%;
  }

  .vertical-video-card .video-embed {
    width: min(100%, 280px);
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .video-stack .video-embed {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .vertical-video-card .project-copy {
    text-align: center;
  }

  .project-card {
    width: 100%;
    max-width: calc(100vw - 48px);
    align-items: center;
    text-align: center;
  }

  .project-media {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .project-copy {
    align-items: center;
  }
}

@media (max-width: 520px) {
  .hero,
  .about-me,
  .category-jump,
  .smm,
  .content,
  .videography,
  .design,
  .contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
    height: clamp(300px, 76vw, 430px);
    min-height: 0;
  }

  .hero-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-scroll {
    bottom: 18px;
  }

  .hero-scroll span:first-child {
    display: none;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(26px, 8.5vw, 36px);
    overflow-wrap: normal;
    word-break: keep-all;
    white-space: nowrap;
  }

  .design .section-title {
    font-size: clamp(22px, 6.6vw, 30px);
    white-space: normal;
  }

  .content .section-title {
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .case {
    padding-left: 10px;
    padding-right: 10px;
  }

  .case-text h3 {
    white-space: normal;
  }

  .smm .case-text h3 {
    font-size: clamp(30px, 8vw, 36px);
    white-space: nowrap;
  }

  .intro h1 {
    font-size: 34px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    padding-left: 0;
    padding-right: 0;
    max-width: 360px;
  }

  .stats div {
    max-width: none;
  }

  .stats strong {
    font-size: 25px;
  }

  .stats span {
    font-size: 11px;
  }

  .phones-row {
    gap: 28px;
  }

  .phones-row .content-card {
    width: 100%;
  }

  .floating-categories {
    right: 14px;
    top: 14px;
  }

  .floating-categories.is-open {
    inset: 0;
  }

  .floating-toggle {
    margin: 14px 14px 0 auto;
  }

  .floating-links a {
    font-size: clamp(25px, 8vw, 40px);
  }

  .email-link {
    font-size: clamp(15px, 4vw, 20px);
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 24px;
    font-size: 14px;
  }

  .social-links a {
    width: 52px;
    height: 52px;
  }

  .social-links i {
    font-size: 25px;
  }
}

@media (max-width: 1023px) {
  .nav-portfolio-toggle::before {
    display: none;
  }

  .nav-portfolio-toggle::after {
    display: none;
  }

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

/* Responsive polish pass */
@media (max-width: 900px) {
  .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 {
    width: min(250px, calc(100vw - 28px));
  }

  .about-inner {
    width: min(100%, 680px);
    margin-left: auto;
    margin-right: auto;
  }

  .profile-img {
    width: min(54vw, 300px);
    height: min(54vw, 300px);
  }

  .intro {
    max-width: 620px;
  }

  .intro p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .smm .case-text,
  .content .case-text {
    align-items: center;
    min-height: 0;
    padding: 24px 18px;
    text-align: center;
  }

  .smm .desc,
  .content .desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .smm .stats,
  .content .stats {
    display: grid;
    width: min(100%, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin: 22px auto 28px;
  }

  .smm .stats div,
  .content .stats div {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    text-align: center;
  }

  .content-list {
    width: min(100%, 420px);
  }

  .content-stat-pairs {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .video-showcase,
  .video-secondary-grid,
  .design-showcase,
  .design-secondary-grid,
  .graphic-design-grid {
    width: min(100%, 680px);
    margin-left: auto;
    margin-right: auto;
  }

  .project-media,
  .video-embed,
  .motion-embed,
  .design-board,
  .graphic-cover {
    max-width: 100%;
  }

  .project-copy p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .case-nav {
    top: 12px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }

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

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

  .about-me {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .profile-img {
    width: min(68vw, 290px);
    height: min(68vw, 290px);
  }

  .intro {
    text-align: center;
  }

  .intro p {
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
  }

  .category-links {
    gap: 12px;
  }

  .category-links a {
    min-width: min(100%, 250px);
  }

  .smm .case,
  .content .case {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .smm .case-text h3,
  .content .case-text h3 {
    white-space: normal;
  }

  .content .highlight {
    white-space: normal;
  }

  .smm .stats,
  .content .stats {
    width: min(100%, 340px);
    gap: 22px 18px;
  }

  .more-btn,
  .btn {
    max-width: 100%;
  }

  .phones-row .content-card {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mini-phone,
  .phone {
    max-width: 100%;
  }

  .project-card {
    gap: 18px;
    max-width: calc(100vw - 48px);
  }

  .project-media,
  .project-copy,
  .concert-preview,
  .motion-embed,
  .design-board,
  .graphic-cover {
    width: 100%;
    max-width: 100%;
  }

  .concert-preview {
    overflow: hidden;
  }

  .concert-preview-light-right {
    right: -14%;
  }

  .concert-preview-light {
    display: none;
  }

  .video-secondary-grid,
  .video-stack {
    gap: 34px;
  }

  .vertical-phone-media {
    justify-content: center;
  }

  .video-secondary-grid .vertical-video-card .project-copy {
    align-items: center;
    text-align: center;
  }

  .content-stat-pairs {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-stat-pair {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .contact .section-title {
    margin-bottom: 76px;
  }

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

/* Final mobile portfolio menu */
@media (max-width: 900px) {
  .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 {
    z-index: 60;
    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 + About alignment 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;
}

.about-me .intro {
  align-items: flex-start;
  text-align: left;
}

.about-me .eyebrow {
  margin-left: 0;
  margin-right: 0;
}

.about-me .intro p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-me .intro p span {
  display: block;
  white-space: nowrap;
}

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

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

  .about-me .intro,
  .about-me .intro p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .about-me .intro,
  .about-me .intro p {
    text-align: left;
  }

  .about-me .intro p span {
    display: inline;
    white-space: normal;
  }
}

/* Desktop portfolio hover restore */
@media (min-width: 901px) {
  .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 nav stroke tuning */
.case-nav .nav-home,
.case-nav .nav-portfolio-toggle {
  border-width: 2px;
  border-color: #8c52ff;
}

/* Final mobile/tablet portfolio navigation */
@media (max-width: 900px) {
  .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;
  }

  .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;
  }
}
