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

@font-face {
  font-family: "Gill Sans Custom";
  src: url("assets/fonts/GillSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0d0d;
  --text: #ffffff;
  --muted: #bebebe;
  --blue: #2f6eea;
  --dark-card: #0f0f0f;
  --page-width: clamp(1440px, 76vw, 1480px);
  --hero-image-size: clamp(1000px, 35vw, 1200px);
  --hero-circle-size: clamp(1000px, 35vw, 1200px);
  --hero-side-top: clamp(250px, 8.5vw, 170px);
}

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

html {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100%;
  font-family: "Gill Sans Custom", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.page {
  width: min(100% - 80px, var(--page-width));
  margin: 0 auto;
  padding: 64px 0 0;
}

                                                            /* Header */

.site-header {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  width: min(100% - 80px, var(--page-width));
  height: 56px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  overflow: visible;
}

.header-brand,
.header-nav,
.menu-toggle {
  position: relative;
  z-index: 2;
}

                                                    /* Header intro animation */

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  border-radius: inherit;

  transform: scaleX(1);
  transform-origin: center;
}

html.js .site-header::before {
  transform: scaleX(0);
}

html.js.is-loaded .site-header::before {
  transform: scaleX(1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .header-brand,
html.js .menu-toggle {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease 0.45s,
    transform 0.45s ease 0.45s;
}

html.js.is-loaded .header-brand,
html.js.is-loaded .menu-toggle {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  html.js .header-nav {
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 0.45s ease 0.45s,
      transform 0.45s ease 0.45s;
  }

  html.js.is-loaded .header-nav {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo {
  width: 32px;
  height: auto;
  display: block;
}

.header-nav {
  min-width: 620px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}

.header-nav a {
  min-width: max-content;

  color: var(--muted);
  text-decoration: none;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--text);
}

.header-nav a.is-active {
  color: var(--text);
  opacity: 1;
}

.menu-toggle {
  display: none;
}

html.skip-header-intro .site-header::before {
  transform: scaleX(1);
  transition: none;
}

html.skip-header-intro .header-brand,
html.skip-header-intro .header-nav,
html.skip-header-intro .menu-toggle {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

                                                      /* Inner Pages */

.inner-page-placeholder {
  min-height: calc(100svh - 180px);
  padding-top: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.inner-page-placeholder h1 {
  color: var(--text);
  font-size: clamp(44px, 5vw, 88px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 700;
}

.inner-page-placeholder p {
  max-width: 520px;
  margin-top: 18px;

  color: var(--muted);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
}

                                                /* AI Contents Page */

.ai-page-intro {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.ai-page-intro h1 {
  color: var(--text);
  font-size: clamp(34px, 2.5vw, 52px);
  line-height: 1.05;
  font-weight: 400;
}

.ai-page-intro p {
  max-width: 760px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.4;
}

.ai-projects-list {
  width: min(100%, 1440px);
  margin: 120px auto 0;

  display: flex;
  flex-direction: column;
  gap: 34px;
}

.ai-project-card {
  position: relative;
  overflow: visible;

  background: var(--dark-card);
  border-radius: 34px;

  transition:
    transform 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

html.js .ai-page-intro h1,
html.js .ai-page-intro p,
html.js .ai-project-card {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .ai-page-intro h1,
html.js.is-loaded .ai-page-intro p {
  opacity: 1;
  transform: translateY(0);
}

.ai-page-intro h1 {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.ai-page-intro p {
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

html.js.is-loaded .ai-project-card {
  animation: aiProjectIntro 0.75s ease both;
}

html.js.is-loaded .ai-project-card:nth-child(1) {
  animation-delay: 0.22s;
}

html.js.is-loaded .ai-project-card:nth-child(2) {
  animation-delay: 0.32s;
}

html.js.is-loaded .ai-project-card:nth-child(3) {
  animation-delay: 0.42s;
}

html.js.is-loaded .ai-project-card:nth-child(4) {
  animation-delay: 0.52s;
}

html.js.is-loaded .ai-project-card:nth-child(5) {
  animation-delay: 0.62s;
}

html.js.is-loaded .ai-project-card:nth-child(6) {
  animation-delay: 0.72s;
}

@keyframes aiProjectIntro {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.js.is-loaded .ai-project-card:not(.is-open):hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.ai-project-preview {
  position: relative;
  width: 100%;
  min-height: 255px;

  display: block;
  overflow: hidden;

  border: 0;
  border-radius: inherit;
  background: #111;
  cursor: pointer;

  text-align: left;
  color: var(--text);
}

.ai-project-preview img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform 0.45s ease;
}

html.js.is-loaded .ai-project-card:not(.is-open):hover .ai-project-preview img {
  transform: scale(1.035);
}

.ai-project-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.46) 45%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.ai-project-preview-content {
  position: relative;
  z-index: 2;

  min-height: 255px;
  padding: 48px 72px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-project-preview-content h2 {
  color: #fff;
  font-size: clamp(58px, 5vw, 96px);
  line-height: 0.9;
  font-weight: 400;
}

.ai-project-preview-content p {
  margin-top: 12px;

  color: #fff;
  font-size: clamp(20px, 1.4vw, 32px);
  line-height: 1.1;
}

.ai-project-preview-content.small h2 {
  font-size: clamp(30px, 2.4vw, 46px);
  line-height: 1.05;
}

.ai-project-detail {
  display: none;
}

.ai-project-card.is-open {
  padding: clamp(48px, 4vw, 70px);
  background: var(--dark-card);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  transform: none;
}

.ai-project-card.is-open:hover {
  transform: none;
}

.ai-project-card.is-open .ai-project-preview {
  display: none;
}

.ai-project-card.is-open .ai-project-detail {
  display: block;
  animation: aiDetailIn 0.55s ease both;
}

@keyframes aiDetailIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aiDetailOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
}

.ai-project-card.is-closing .ai-project-detail {
  display: block;
  animation: aiDetailOut 0.35s ease both;
}

.ai-project-close {
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 4;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);

  font-size: 30px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.ai-project-close:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.14);
}

.ai-project-detail-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 4vw, 64px);
  align-items: start;
}

.ai-project-info {
  text-align: left;
}

.ai-project-info h2 {
  color: var(--text);
  font-size: clamp(64px, 5vw, 100px);
  line-height: 0.9;
  font-weight: 400;
}

.ai-project-info h3 {
  margin-top: 12px;

  color: var(--text);
  font-size: clamp(22px, 1.55vw, 34px);
  line-height: 1.1;
  font-weight: 400;
}

.ai-project-info p {
  max-width: 520px;
  margin-top: 18px;

  color: var(--text);
  font-size: clamp(15px, 0.95vw, 19px);
  line-height: 1.28;
}

.ai-social-pill {
  width: fit-content;
  margin-top: 28px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;

  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}

.ai-social-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ai-project-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  grid-template-rows: 270px 270px;
  gap: 16px;

  width: 100%;
  align-self: start;
}

.ai-gallery-box {
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.ai-gallery-box img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.ai-gallery-box:hover img {
  transform: scale(1.04);
}

.ai-gallery-box-top {
  grid-column: 1;
  grid-row: 1;
}

.ai-gallery-box-bottom {
  grid-column: 1;
  grid-row: 2;
}

.ai-gallery-box-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.ai-final-productions {
  margin-top: 46px;
}

.ai-final-productions h3 {
  color: var(--text);
  font-size: clamp(26px, 1.8vw, 38px);
  line-height: 1.1;
  font-weight: 400;
}

.ai-video-grid {
  margin-top: 28px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ai-video-grid-single {
  grid-template-columns: 1fr;
}

.ai-video-card {
  position: relative;
  overflow: hidden;

  aspect-ratio: 1 / 1.18;
  border-radius: 14px;

  display: block;
  background: #111;
}

.ai-video-card-wide {
  aspect-ratio: 16 / 7;
}

.ai-video-card img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.ai-video-card:hover img {
  transform: scale(1.04);
}

.ai-play-button {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 50px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background: #fff;
  color: #5d4cff;
  border-radius: 9px;

  font-size: 18px;
  line-height: 1;
}

                                                  /* Motion Graphics Page */

                                                  /* Motion Graphics Page */

.motion-page-intro {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.motion-page-intro h1 {
  color: var(--text);
  font-size: clamp(34px, 2.5vw, 52px);
  line-height: 1.05;
  font-weight: 400;
}

.motion-page-intro p {
  max-width: 760px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.4;
}

.motion-showcase {
  width: min(100%, 1440px);
  margin: 110px auto 0;
}

.motion-featured-card {
  margin-bottom: 34px;
}

.motion-video-card {
  position: relative;
  overflow: hidden;

  display: block;
  text-decoration: none;
  color: var(--text);

  border-radius: 34px;
  background: var(--dark-card);
}

.motion-video-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.motion-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.motion-video-card:hover img {
  transform: scale(1.035);
}

.motion-video-card-featured {
  min-height: 520px;
}

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

.motion-grid .motion-video-card {
  aspect-ratio: 1 / 1.25;
}

.motion-card-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 2;
}

.motion-card-content span {
  display: block;

  color: var(--muted);
  font-size: clamp(13px, 0.8vw, 15px);
  line-height: 1.2;
}

.motion-card-content h2 {
  margin-top: 8px;

  color: var(--text);
  font-size: clamp(32px, 2.6vw, 52px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.motion-card-content h3 {
  margin-bottom: 8px;

  color: var(--text);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.motion-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  width: 54px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  background: #fff;
  color: #5d4cff;
  border-radius: 10px;

  font-size: 18px;
  line-height: 1;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.motion-video-card:hover .motion-play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

/* Motion Graphics intro animation */

html.js .motion-page-intro h1,
html.js .motion-page-intro p,
html.js .motion-featured-card,
html.js .motion-grid .motion-video-card {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .motion-page-intro h1,
html.js.is-loaded .motion-page-intro p,
html.js.is-loaded .motion-featured-card,
html.js.is-loaded .motion-grid .motion-video-card {
  opacity: 1;
  transform: translateY(0);
}

.motion-page-intro h1 {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.motion-page-intro p {
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

.motion-featured-card {
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.motion-grid .motion-video-card {
  transition:
    opacity 0.75s ease,
    transform 0.25s ease;
}

html.js .motion-featured-card {
  transition-delay: 0.22s;
}

html.js .motion-grid .motion-video-card:nth-child(1) {
  transition-delay: 0.32s;
}

html.js .motion-grid .motion-video-card:nth-child(2) {
  transition-delay: 0.42s;
}

html.js .motion-grid .motion-video-card:nth-child(3) {
  transition-delay: 0.52s;
}

html.js .motion-grid .motion-video-card:nth-child(4) {
  transition-delay: 0.62s;
}

html.js .motion-grid .motion-video-card:nth-child(5) {
  transition-delay: 0.72s;
}

html.js .motion-grid .motion-video-card:nth-child(6) {
  transition-delay: 0.82s;
}

/* Contact Page */

.contact-page-intro {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}

.contact-page-intro h1 {
  color: var(--text);
  font-size: clamp(34px, 2.5vw, 52px);
  line-height: 1.05;
  font-weight: 400;
}

.contact-page-intro p {
  max-width: 760px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.4;
}

.contact-panel {
  width: min(100%, 1180px);
  margin: 110px auto 0;
  padding: clamp(34px, 4vw, 58px);

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 76px);

  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.contact-panel-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-kicker {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.contact-panel-left h2 {
  margin-top: 18px;

  color: var(--text);
  font-size: clamp(40px, 3.6vw, 72px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -1.4px;
}

.contact-panel-left p {
  max-width: 470px;
  margin-top: 22px;

  color: var(--muted);
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.45;
}

.contact-services {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-services span {
  padding: 9px 12px;

  color: var(--text);
  font-size: 13px;
  line-height: 1;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-panel-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  width: 100%;
  min-height: 76px;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 18px;

  color: var(--text);
  text-decoration: none;
  text-align: left;

  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-family: inherit;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}

.contact-link span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
}

.contact-link strong {
  color: var(--text);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.1;
  font-weight: 400;
}

.contact-link small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

                                              /* Contact intro animation */

html.js .contact-page-intro h1,
html.js .contact-page-intro p,
html.js .contact-panel {
  opacity: 0;
  transform: translateY(26px);
}

html.js.is-loaded .contact-page-intro h1,
html.js.is-loaded .contact-page-intro p,
html.js.is-loaded .contact-panel {
  opacity: 1;
  transform: translateY(0);
}

.contact-page-intro h1 {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.contact-page-intro p {
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.7s ease 0.12s;
}

.contact-panel {
  transition:
    opacity 0.75s ease 0.22s,
    transform 0.75s ease 0.22s,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


                                                  /* Video Modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 32px;

  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-content {
  width: min(100%, 1080px);
  max-height: 82vh;

  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);

  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.video-modal.is-open .video-modal-content {
  transform: scale(1);
}

.video-modal-player {
  width: 100%;
  max-height: 82vh;

  display: block;
  background: #000;
}

.video-modal-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 3001;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);

  font-size: 34px;
  line-height: 1;
  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.16);
}

                                                                  /* Hero */

.hero {
  padding-top: 92px;
  text-align: center;
}

.hero-title h1 {
  font-size: clamp(64px, 5vw, 92px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 700;
}

.hero-title p {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.45vw, 30px);
}

.hero-content {
  position: relative;
  height: var(--hero-image-size);
  margin-top: -3%;
  overflow: visible;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: var(--hero-image-size);
  height: var(--hero-image-size);

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  bottom: -300px;
  width: var(--hero-circle-size);
  aspect-ratio: 1 / 1;

  background: var(--dark-card);
  border-radius: 50%;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;

  width: var(--hero-image-size);
  height: auto;
  display: block;
}

                                                         /* Hero mouse movement */

.hero-image {
  transform: translate3d(var(--hero-image-x, 0px), var(--hero-image-y, 0px), 0);
  transition: transform 0.18s ease-out;
}

.hero-circle {
  transform: translate3d(var(--hero-circle-x, 0px), var(--hero-circle-y, 0px), 0);
  transition: transform 0.18s ease-out;
}

.hero-quote {
  position: absolute;
  left: 0;
  top: var(--hero-side-top);
  width: clamp(260px, 16vw, 320px);

  text-align: left;
  color: var(--muted);
}

.quote-mark {
  display: block;
  width: clamp(18px, 1.4vw, 28px);
  height: auto;
  opacity: 0.95;
}

.hero-quote p {
  margin-top: 12px;
  font-size: clamp(15px, 0.85vw, 18px);
  line-height: 1.28;
}

.hero-experience {
  position: absolute;
  right: 0;
  top: var(--hero-side-top);

  text-align: right;
  color: var(--muted);
}

.stars {
  display: block;
  width: 145px;
  height: auto;
  margin-left: auto;
  opacity: 0.95;
}

.hero-experience strong {
  display: block;
  margin-top: 8px;

  color: var(--text);
  font-size: clamp(32px, 2vw, 42px);
  line-height: 0.95;
  font-weight: 700;
}

.experience-count {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.hero-experience .experience-label {
  display: block;
  margin-top: 6px;

  font-size: clamp(13px, 0.8vw, 16px);
}

                                                /* Hero intro animation */

.js .hero-title,
.js .hero-quote,
.js .hero-image-wrap,
.js .hero-experience {
  opacity: 0;
  transform: translateY(22px);
}

.js.is-loaded .hero-title,
.js.is-loaded .hero-quote,
.js.is-loaded .hero-image-wrap,
.js.is-loaded .hero-experience {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-image-wrap {
  transition: opacity 0.8s ease 0.12s, transform 0.8s ease 0.12s;
}

.hero-quote {
  transition: opacity 0.7s ease 0.24s, transform 0.7s ease 0.24s;
}

.hero-experience {
  transition: opacity 0.7s ease 0.32s, transform 0.7s ease 0.32s;
}

/* About */

.about-card {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(44px, 5vw, 76px);

  margin-top: 0;
  padding: clamp(44px, 4vw, 58px) clamp(50px, 5vw, 78px);

  background: var(--dark-card);
  border-radius: 22px;
}

                                                 /* About intro animation */

.js .about-card {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js.is-loaded .about-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  text-align: left;
  align-self: center;
}

.about-text h2 {
  margin-bottom: 16px;

  color: var(--text);
  font-size: clamp(26px, 1.9vw, 34px);
  line-height: 1;
  font-weight: 700;
}

.about-text p {
  max-width: 510px;
  margin-bottom: 0;

  color: var(--text);
  font-size: clamp(14px, 0.78vw, 16px);
  line-height: 1.22;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.social-links a,
.footer-socials a {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  opacity: 0.9;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover,
.footer-socials a:hover {
  opacity: 1;
  transform: scale(1.12);
}

.social-links img,
.footer-socials img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 140px;
  grid-template-areas:
    "logo logo tall"
    "small wide wide";
  gap: 18px;

  width: 100%;
  max-width: 560px;
  align-self: center;
  justify-self: end;
}

.gallery-logo,
.gallery-photo {
  overflow: hidden;
  background: #0b0b0b;
}

.gallery-photo-logo {
  grid-area: logo;
  border-radius: 22px;
}

.gallery-photo-logo img {
  object-fit: cover;
  object-position: center center;
}

.gallery-photo-tall {
  grid-area: tall;
  border-radius: 18px;
}

.gallery-photo-small {
  grid-area: small;
  border-radius: 18px;
}

.gallery-photo-wide {
  grid-area: wide;
  border-radius: 18px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery-photo-tall img {
  object-position: bottom right;
}

.gallery-photo-small img {
  object-position: center center;
  background: #f2f2f2;
  object-fit: cover;
}

.gallery-photo-wide img {
  object-position: bottom center;
}

                                                     /* Collaborations */

.collaborations {
  padding-top: clamp(90px, 8vw, 140px);
  text-align: center;
}

.collaborations h2,
.recommendation h2,
.experience h2 {
  color: var(--text);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.recommendation-heading {
  text-align: center;
}

.recommendation-heading p {
  max-width: 620px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.4;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;

  width: min(100%, var(--page-width));
  margin: 34px auto 0;
  gap: clamp(18px, 2vw, 34px);
}

.brand-row img {
  max-height: 32px;
  width: auto;
  opacity: 0.95;
  filter: grayscale(1);
}

.map-wrap {
  position: relative;
  width: min(155vw, 2000px);
  margin: clamp(60px, 6vw, 90px) 50% 0;
  transform: translateX(-50%);
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.1;
}

.map-pin {
  position: absolute;
  color: var(--text);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;

  width: 1px;
  height: 58px;

  background: rgba(255, 255, 255, 0.75);
}

.pin-usa {
  left: 21%;
  top: 33%;
}

.pin-canada {
  left: 29%;
  top: 18%;
}

.pin-switzerland {
  left: 51%;
  top: 19%;
}

.pin-uae {
  left: 63.5%;
  top: 32%;
}

.pin-iran {
  left: 67.5%;
  top: 25%;
}

.everywhere {
  margin-top: -30px;
  color: var(--muted);
}

.everywhere img {
  width: 32px;
  height: auto;
  margin-bottom: 8px;
}

.everywhere p {
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: 0.5px;
}

                                                     /* Recommendation */

.recommendation {
  padding-top: clamp(100px, 9vw, 160px);
}

.recommendation-heading {
  text-align: center;
}

.recommendation-heading p {
  max-width: 620px;
  margin: 14px auto 0;

  color: var(--muted);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.4;
}

.recommendation-cards {
  margin-top: 58px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.recommendation-card {
  position: relative;
  overflow: hidden;

  min-height: 350px;
  padding: 34px;

  border-radius: 30px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.recommendation-card:hover {
  transform: scale(1.018);
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.recommendation-quote-mark {
  position: absolute;
  right: 28px;
  top: 18px;

  color: rgba(255, 255, 255, 0.08);
  font-size: 150px;
  line-height: 1;
  font-weight: 700;

  pointer-events: none;
}

.recommendation-person {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 28px;
}

.recommendation-photo {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;

  overflow: hidden;
  border-radius: 24px;
  background: #111;
}

.recommendation-photo img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  filter: grayscale(1);

  transition: transform 0.35s ease;
}

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

.recommendation-person h3 {
  color: var(--text);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1;
  font-weight: 700;
}

.recommendation-person span {
  display: block;
  margin-top: 8px;

  color: var(--muted);
  font-size: clamp(13px, 0.85vw, 16px);
  line-height: 1.2;
}

.recommendation-card > p {
  position: relative;
  z-index: 2;

  color: var(--text);
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.45;
}

                                                           /* Experience */

.experience-section {
  padding: 140px 0 100px;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-heading h2 {
  color: var(--text);
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.experience-roadmap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );
}

.roadmap-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 54px;
  min-height: 180px;
}

.roadmap-item.left {
  justify-content: flex-start;
}

.roadmap-item.right {
  justify-content: flex-end;
}

.roadmap-card {
  width: calc(50% - 70px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 28px 28px 24px;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(10px);
}

.roadmap-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.roadmap-item.left .roadmap-card {
  margin-right: auto;
}

.roadmap-item.right .roadmap-card {
  margin-left: auto;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  
}

.roadmap-dot img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.roadmap-year {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.roadmap-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.roadmap-card h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.roadmap-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.roadmap-date {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  opacity: 0.88;
}

                                                          /* Footer */

.site-footer {
  width: min(100%, var(--page-width));
  margin: clamp(90px, 8vw, 140px) auto 0;
  padding-bottom: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;

  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--text);
  text-decoration: none;
  justify-self: start;
}

.footer-brand img {
  width: 34px;
  height: auto;
}

.footer-brand span {
  font-size: 13px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2vw, 36px);
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-nav a.is-active {
  color: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  justify-self: end;
}

                                                          /* Mobile */

@media (max-width: 768px) {
  .page {
    width: 100%;
    padding: 28px 18px 0;
  }

  .site-header {
    top: 16px;
    width: calc(100% - 28px);
    height: 58px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .header-logo {
    width: 26px;
  }

  .menu-toggle {
  display: inline-flex;
  width: 36px;
  height: 36px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;

  background: var(--text);
  border-radius: 999px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-header .header-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 0;

  width: min(220px, 72vw);
  padding: 18px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;

  background: transparent;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);

  z-index: 20;
  overflow: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.site-header .header-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: rgba(5, 5, 5, 1);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);

  border-radius: inherit;
}

.site-header.is-menu-open .header-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header .header-nav a {
  position: relative;
  z-index: 1;

  width: 100%;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}

.inner-page-placeholder {
  min-height: calc(100svh - 120px);
  padding-top: 140px;
}

.inner-page-placeholder h1 {
  font-size: clamp(34px, 10vw, 52px);
  letter-spacing: -1px;
}

.inner-page-placeholder p {
  font-size: 14px;
}

  .hero {
    padding-top: 96px;
  }

  .hero-title h1 {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 0.95;
    letter-spacing: -1px;
  }

  .hero-title p {
    margin-top: 6px;
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.2;
  }

  .hero-content {
    height: auto;
    margin-top: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-image-wrap {
  order: 1;
}

.hero-image,
.hero-circle {
  transform: none;
  transition: none;
}

.hero-quote {
  order: 2;
  text-align: center;
}

.hero-experience {
  order: 3;
  text-align: center;
}

  .hero-image-wrap {
    width: min(88vw, 430px);
    height: min(88vw, 430px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 28px;
    background: var(--dark-card);

    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-circle {
    display: none;
  }

  .hero-image {
    width: 100%;
    max-width: none;
    height: auto;
    transform: translateY(0);
  }
  

  .hero-quote {
    position: static;
    width: min(100%, 330px);
    margin-top: 48px;
    text-align: center;
  }

  .quote-mark {
    width: 22px;
    margin: 0 auto;
  }

  .hero-quote p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-experience {
    position: static;
    width: 100%;
    margin-top: 34px;
    text-align: center;
  }

  .stars {
    width: 130px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-experience strong {
    font-size: 34px;
  }

  .experience-count {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

  .hero-experience .experience-label {
  font-size: 13px;
}

  .about-card {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-text p {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }

  .social-links a,
  .footer-socials a {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "logo logo"
      "tall small"
      "wide wide";
    gap: 12px;
    max-width: 100%;
    justify-self: stretch;
  }

 .gallery-photo-logo {
  min-height: 190px;
}

  .gallery-photo-tall,
  .gallery-photo-small {
    min-height: 180px;
  }

  .gallery-photo-wide {
    min-height: 160px;
  }

  .collaborations {
    padding-top: 70px;
  }

  .brand-row {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 24px;
  }

  .brand-row img {
    max-height: 20px;
  }

  .map-wrap {
    width: min(180vw, 900px);
    margin-top: 50px;
  }

  .map-pin {
    font-size: 10px;
  }

  .map-pin::after {
    height: 38px;
    top: 18px;
  }

  .everywhere {
    margin-top: 10px;
  }

  .recommendation {
  padding-top: 90px;
}

.recommendation-heading p {
  max-width: 320px;
  font-size: 14px;
}

.recommendation-cards {
  margin-top: 38px;
  grid-template-columns: 1fr;
  gap: 18px;
}

.recommendation-card {
  min-height: auto;
  padding: 26px 22px;
  border-radius: 24px;
  text-align: center;
}

.recommendation-quote-mark {
  right: 18px;
  top: 10px;
  font-size: 100px;
}

.recommendation-person {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

.recommendation-photo {
  width: 110px;
  height: 110px;
  flex-basis: 110px;
  border-radius: 22px;
}

.recommendation-person h3 {
  font-size: 22px;
}

.recommendation-person span {
  font-size: 13px;
}

.recommendation-card > p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .experience-section {
    padding: 110px 0 80px;
  }

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

  .experience-roadmap {
    padding-left: 28px;
  }

  .roadmap-line {
    left: 28px;
    transform: none;
  }

  .roadmap-item {
    justify-content: flex-start !important;
    margin-bottom: 32px;
    min-height: auto;
  }

  .roadmap-dot {
    left: 28px;
    top: 28px;
    transform: translate(-50%, 0);
    width: 60px;
    height: 60px;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.95);
  }

  .roadmap-dot img {
    width: 28px;
    height: 28px;
  }

  .roadmap-card {
    width: 100%;
    margin-left: 58px !important;
    margin-right: 0 !important;
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .roadmap-card h3 {
    font-size: 22px;
  }

  .roadmap-card h4 {
    font-size: 14px;
  }

  .roadmap-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

  .site-footer {
    width: 100%;
    margin-top: 80px;
    padding-bottom: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-socials {
    justify-content: center;
    justify-self: center;
    gap: 12px;
  }

  @media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-quote,
  .hero-image-wrap,
  .hero-experience,
  .hero-image,
  .hero-circle {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

  .ai-page-intro {
  padding-top: 100px;
}

.ai-page-intro h1 {
  font-size: 32px;
}

.ai-page-intro p {
  font-size: 14px;
}

.ai-projects-list {
  margin-top: 70px;
  gap: 22px;
}

.ai-project-preview {
  min-height: 170px;
}

.ai-project-preview-content {
  min-height: 170px;
  padding: 28px 26px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.ai-project-preview-content h2 {
  font-size: 42px;
  text-align: center;
}

.ai-project-preview-content p {
  font-size: 16px;
  text-align: center;
}

.ai-project-card.is-open {
  padding: 28px;
  border-radius: 24px;
}

.ai-project-detail-top {
  grid-template-columns: 1fr;
  gap: 32px;
}

.ai-project-info {
  text-align: center;
}

.ai-project-info h2 {
  font-size: 54px;
}

.ai-project-info h3 {
  font-size: 22px;
}

.ai-project-info p {
  max-width: 100%;
  font-size: 14px;
}

.ai-social-pill {
  margin-left: auto;
  margin-right: auto;
}

.ai-project-gallery {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.ai-gallery-box {
  border-radius: 14px;
}

.ai-gallery-box-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.ai-gallery-box-top {
  grid-column: 1;
  grid-row: 1;
}

.ai-gallery-box-bottom {
  grid-column: 1;
  grid-row: 2;
}

.ai-project-gallery img {
  border-radius: 14px;
}

.ai-final-productions {
  margin-top: 34px;
}

.ai-final-productions h3 {
  text-align: center;
  font-size: 26px;
}

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

.ai-video-card {
  aspect-ratio: 1 / 1.08;
}

.ai-video-card-wide {
  aspect-ratio: 1 / 1.08;
}

.video-modal {
  padding: 18px;
}

.video-modal-content {
  width: 100%;
  border-radius: 18px;
}

.video-modal-close {
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  font-size: 28px;
}

.ai-project-close {
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  font-size: 26px;
}

.motion-page-intro {
  padding-top: 100px;
}

.motion-page-intro h1 {
  font-size: 32px;
}

.motion-page-intro p {
  font-size: 14px;
}

.motion-showcase {
  margin-top: 70px;
}

.motion-featured-card {
  margin-bottom: 22px;
}

.motion-video-card-featured {
  min-height: 300px;
  border-radius: 24px;
}

.motion-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.motion-grid .motion-video-card {
  aspect-ratio: 1 / 1.08;
  border-radius: 24px;
}

.motion-card-content {
  left: 24px;
  right: 24px;
  bottom: 24px;
  text-align: left;
}

.motion-card-content h2 {
  font-size: 30px;
}

.motion-card-content h3 {
  font-size: 24px;
}

.motion-play-button {
  width: 48px;
  height: 38px;
}

.contact-page-intro {
  padding-top: 100px;
}

.contact-page-intro h1 {
  font-size: 32px;
}

.contact-page-intro p {
  font-size: 14px;
}

.contact-panel {
  margin-top: 70px;
  padding: 26px 22px;

  grid-template-columns: 1fr;
  gap: 34px;

  border-radius: 24px;
}

.contact-panel-left {
  text-align: center;
  align-items: center;
}

.contact-panel-left h2 {
  font-size: 40px;
  letter-spacing: -0.8px;
}

.contact-panel-left p {
  max-width: 100%;
  font-size: 14px;
}

.contact-services {
  justify-content: center;
}

.contact-services span {
  font-size: 12px;
}

.contact-link {
  min-height: auto;
  padding: 18px;

  grid-template-columns: 1fr;
  gap: 8px;

  text-align: center;
}

.contact-link:hover {
  transform: none;
}

.contact-link span,
.contact-link small {
  font-size: 12px;
}

.contact-link strong {
  font-size: 15px;
}
}