/* Fonts loaded via link tag in HTML for better performance */

:root {
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', monospace;
  --color-blue: #0026FF;
  --color-white: #FFFFFF;
  --color-black: #010101;
  --color-cyan: #00D4FF;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font: inherit;
}

html {
  font-size: 16px;
}
@media (max-width: 1680px) {html {font-size: 13px;}}
@media (max-width: 1440px) {html {font-size: 11px;}}
@media (max-width: 1280px) {html {font-size: 10px;}}

/* Spacer */
.mobile-spacer {
  width: 100%;
  height: 0;
  pointer-events: none;
}

body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 200;
  overflow-x: auto;
  overflow-y: hidden;
  height: 100vh;
  padding: 10vh 8vw;
}

/* Modal */
.blocker {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9998 !important;
  background: rgba(0, 0,0, 0.7) !important;
  overflow: hidden !important;
}

.modal {
  font-family: var(--font-mono);
  color: var(--color-white);

  z-index: 9999 !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  max-width: 500px;
  width: 90%;
  background: var(--color-black) !important;
  padding: 0rem;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .modal {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
}

.modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.modal a.close-modal {
  display: none !important;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem;
}

.modal-title {
  font-size: 0.825rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.modal-text {
  line-height: 1.6;
  opacity: 0.9;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.modal .text-tag {
  align-self: flex-start;
}

.modal .cta-button {
  padding: 1rem 1.25rem;
}

.modal .cta-text {
  font-size: 1.25rem;
}

/* Sidebar */
.sidebar-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 4rem;
  height: 100vh;
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 6rem 0;
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .sidebar-fixed {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.sidebar-fixed::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4rem;
  background: var(--color-blue);
}

.sidebar-clock,
.sidebar-name {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  white-space: nowrap;
}

.content-wrapper {
  height: 80vh;
  column-width: 28rem;
  column-gap: clamp(4rem, 8vw, 10rem);
  column-rule: 1px solid rgba(255, 255, 255, 0.12);
}

.force-column {
  break-before: column;
}

.text-large {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
  break-inside: avoid;
}

.hero-name {
  position: relative;
  display: inline-block;
  color: var(--color-cyan);
}
.hero-name::after {
  content: "";
  position: absolute;
  top: -3rem;
  left: -2rem;
  width: 140%;
  height: 220px;
  background-image: url('/assets/img/head.webp');
  background-size: cover;
  background-position: center;
  
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -99;

  transition: width 0.5s ease, opacity 0.3s ease;
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-name:hover::after {
  transform: scaleX(1);
  width: 120%;
  opacity: 0.8;
  border-radius: 12px;
}

.text-medium {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 4rem;
  break-inside: avoid;
}
.text-gradient {
  font-weight: 400;
  background: linear-gradient(
    110deg,
    var(--color-blue) 0%,
    var(--color-cyan) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-body {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.text-body.emphasis {
  font-size: 2.25rem;
  line-height: inherit;
}

.text-small {
  font-size: 1.325rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.text-footer {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.text-section {
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  break-inside: avoid;
  font-family: var(--font-mono);
  color: var(--color-cyan);
}

.text-body ul {
  list-style: none;
  padding-left: 0;
}

.text-body ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.25rem;
}

.text-body ul li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--color-blue);
}

.text-body ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background-color: var(--color-blue);

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}
.text-body ul li:hover::after,
.text-body ul li:focus-within::after {
  transform: scaleX(1);
}

.text-body li a {
  color: var(--color-cyan);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}
.text-body li a:hover {
  color: var(--color-white);
}
.text-body li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.25rem;
  background: var(--color-blue);
  z-index: -1;
  transition: width 0.25s ease;
}
.text-body li a:hover::after {
  width: 100%;
}

.text-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  break-inside: avoid;
}

.text-tag--blue {
  background: rgba(0, 47, 255, 0.5);
  margin-bottom: 0.4rem;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 1px,
      transparent 6px);
  border-radius: 8px;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.icon-wrapper .icon-svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.section-block {
  margin-top: 4rem;
  margin-bottom: 2rem;
  break-inside: avoid;
}
.section-block:first-child {
  margin-top: 0;
}

.section-break {
  margin-bottom: 4rem;
  break-inside: avoid;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}

.hero-mark .hero-dot {
  width: 0.5em;
  height: 0.5em;
  fill: var(--color-blue);
  transform: translateY(0.1em);
  animation: typewriter-blink 2s steps(1, start) infinite;
}


@keyframes typewriter-blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.pattern-area {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.pattern-frame {
  height: 8rem;
}

.dot-pattern {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 2px);
  background-size: 16px 16px;
}

/* Showreel Card */
.showreel-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 3rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0;
  font-family: inherit;
}

.showreel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  will-change: opacity;
  appearance: none;
  -webkit-appearance: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000;
  -webkit-perspective: 1000;
}

/* Hide native video controls and play button */
.showreel-bg::-webkit-media-controls {
  display: none !important;
}
.showreel-bg::-webkit-media-controls-enclosure {
  display: none !important;
}
.showreel-bg::-webkit-media-controls-panel {
  display: none !important;
}
.showreel-bg::-webkit-media-controls-play-button {
  display: none !important;
}
.showreel-bg::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.showreel-card:hover .showreel-bg {
  opacity: 0.55;
}

.showreel-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
}

.showreel-title {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

.showreel-pattern {
  width: 3rem;
  height: 4rem;
  background: repeating-linear-gradient(
    135deg,
    var(--color-white) 0px,
    var(--color-white) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 20px 20px;
  animation: showreel-diagonal 2s linear infinite;
}

.showreel-card:hover .showreel-pattern {
  background: repeating-linear-gradient(
    135deg,
    var(--color-cyan) 0px,
    var(--color-cyan) 6px,
    transparent 6px,
    transparent 14px
  );
  background-size: 20px 20px;
}

@keyframes showreel-diagonal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 20px 20px;
  }
}

body.showreel-modal-open {
  overflow: hidden;
}
.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

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

  background: rgba(0, 0, 0, 0.7);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.showreel-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.showreel-modal-close {
  position: absolute;
  inset: 0;
  cursor: default;
  border: none;
  background: none;
  padding: 0;
}
.showreel-modal-frame {
  position: relative;
  z-index: 1;

  width: min(95vw, 1200px);
  aspect-ratio: 16 / 9;

  background: var(--color-black);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  transform: scale(0.96);
  transition: transform 0.35s ease;
}
.showreel-modal.active .showreel-modal-frame {
  transform: scale(1);
}
.showreel-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile video fixes */
@media (max-width: 768px) {
  .showreel-bg {
    /* Ensure video plays on mobile */
    user-select: none;
    -webkit-user-select: none;
  }

  .showreel-card {
    /* Improve touch target */
    min-height: 200px;
  }

  .showreel-modal-frame {
    width: min(100vw, 100%);
    aspect-ratio: 16 / 9;
  }
}

/* CTA */
.cta-wrap {
  position: relative;
  width: calc(100% - 2rem);
  break-inside: avoid;
}

.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;

  font-size: 1.6rem;
  font-family: var(--font-mono);
  line-height: 1.2;
  letter-spacing: -0.02em;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}
.cta-button:hover {
  background: var(--color-black);
  outline: 4px solid var(--color-blue);
  outline-offset: 1px;
}

.cta-button--dark {
  background: var(--color-black);
}

.cta-text {
  display: flex;
  align-items: center;
}

.cta-arrow svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transform: translateY(0.1em);
}

.cta-wrap::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: -2rem;
  bottom: -2rem;

  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 1px,
      transparent 14px
  );
  background-size: 20px 20px;
  animation: slide-diagonal 4s linear infinite;

  z-index: 1;
  pointer-events: none;
}

.cta-animated .frame {
  position: relative;
  height: 1.2em;
  line-height: 1.2em;
  display: inline-block;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.cta-animated .sizer {
  visibility: hidden;
  white-space: nowrap;
}

.cta-animated .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
}

.cta-animated .text span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
  transition-delay: calc(var(--i) * 0.02s);
}

.cta-animated .hover span {
  transform: translateY(1.2em);
}

.cta-animated:hover .original span {
  transform: translateY(-1.2em);
}

.cta-animated:hover .hover span {
  transform: translateY(0);
}

/* NAV */
.button-wrap {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
}
.nav-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-item:last-child {
  border-bottom: none;
}

.nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1rem;
  gap: 1rem;

  background: rgba(255, 255, 255, 0.0);
  color: var(--color-white);
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;

  transition: background 0.2s ease;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-animated .frame {
  position: relative;
  height: 1.25em;
  line-height: 1.25em;
  display: inline-block;
  overflow: hidden;
  padding-right: 0.2em;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.nav-animated .sizer {
  visibility: hidden;
  white-space: nowrap;
}

.nav-animated .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  white-space: nowrap;
}

.nav-animated .text span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.20s cubic-bezier(.4, 0, .2, 1);
  transition-delay: calc(var(--i) * 0.02s);
}

.nav-animated .hover span {
  transform: translateY(1.25em);
}

.nav-animated:hover .original span {
  transform: translateY(-1.25em);
}

.nav-animated:hover .hover span {
  transform: translateY(0);
}

.nav-animated .nav-chevron {
  position: relative;
  align-self: center;
  overflow: hidden;
  color: var(--color-blue);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-animated .nav-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.nav-animated .chevron-original svg {
  transform: translateX(0);
}

.nav-animated .chevron-hover svg {
  transform: translateX(-50px);
}

.nav-animated:hover .chevron-original svg {
  transform: translateX(50px);
}

.nav-animated:hover .chevron-hover svg {
  transform: translateX(0);
}

/* THE REST */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1rem 0;
}

/* Marquee */
.marquee-frame {
  position: relative;
  width: 100%;
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
.marquee-track {
  display: flex;
  align-items: baseline;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee .client {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee .client-name {
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--color-white);
}
.marquee .client-region {
  font-size: 1.5rem;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.marquee .sep {
  width: 3rem;
  height: 3rem;
  background: var(--color-blue);

  -webkit-mask: url("/assets/img/separator.svg") center / contain no-repeat;
  mask: url("/assets/img/separator.svg") center / contain no-repeat;

  flex-shrink: 0;
  align-self: center;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Skill Showcase - Rotating Cards */
.skill-showcase-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5rem 0;
  min-height: 200px;
  break-inside: avoid;
}

.skill-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s ease-in-out;
  padding-right: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-card.active {
  opacity: 1;
  pointer-events: auto;
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.skill-header .text-small {
  color: var(--color-white);
  margin-bottom: 0;
}

.skill-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background-color: var(--color-blue);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.skill-icon--async {
  mask-image: url("/assets/svgs/skill-async.svg");
  -webkit-mask-image: url("/assets/svgs/skill-async.svg");
}
.skill-icon--ai {
  mask-image: url("/assets/svgs/skill-ai.svg");
  -webkit-mask-image: url("/assets/svgs/skill-ai.svg");
}
.skill-icon--scale {
  mask-image: url("/assets/svgs/skill-scale.svg");
  -webkit-mask-image: url("/assets/svgs/skill-scale.svg");
}
.skill-icon--teamfit {
  mask-image: url("/assets/svgs/skill-teamfit.svg");
  -webkit-mask-image: url("/assets/svgs/skill-teamfit.svg");
}

.skill-desc {
  line-height: 1.6;
}

.skill-card .progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--color-blue);
  transform-origin: left;
  transition: width linear;
}

.marquee .text-small {
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.8);
}
.text-emphasis {
  font-weight: 400;
}

.summary-container {
  overflow-x: hidden;
}
.text-summary-area {
  font-size: 0.825rem;
  font-family: var(--font-mono);
  color: var(--color-white);
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0px,
    rgba(255, 255, 255, 0.12) 2px,
    transparent 1px,
    transparent 14px);
  
  background-size: 20px 20px;
  animation: slide-diagonal 4s linear infinite;

  padding: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  white-space: normal;
}
@keyframes slide-diagonal {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

.text-summary-area .sep {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-blue);
  -webkit-mask: url("/assets/img/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/img/arrow-right.svg") center / contain no-repeat;
  flex-shrink: 0;
}

.svg-grid {
  display: grid;
  grid-template-columns: repeat(2, 80px);
  grid-template-rows: repeat(3, 80px);
  gap: 16px;
  margin-bottom: 4rem;
}

.svg-slot img {
  width: 80px;
  height: 80px;
  pointer-events: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.slotGrid {
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 1px,
      transparent 14px
  );
  background-size: 20px 20px;
  animation: slide-diagonal 4s linear infinite;
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    padding: 5vh 5vw;
  }

  .mobile-spacer.spacer-small {
    height: 3.5rem;
  }
  .mobile-spacer.spacer-large {
    height: 12rem;
  }

  .content-wrapper {
    height: auto;
    column-width: auto;
    column-count: 1;
    column-gap: 0;
    column-rule: none;
  }

  .force-column {
    break-before: auto;
  }

  .icon-wrapper {
    background: repeating-linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0px,
        rgba(255, 255, 255, 0.12) 1px,
        transparent 1px,
        transparent 4px);
  }

  .text-large {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
  .text-medium {
    font-size: 3rem;
  }
  .text-body {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .text-body.emphasis {
    font-size: 2.5rem;
  }
  .text-section {
    font-size: 1.5rem;
  }
  .text-small {
    font-size: 1.3rem;
  }
  .text-footer {
    font-size: 0.9rem;
  }
  .marquee .client-name {
    font-size: 3rem;
  }
  .marquee .client-region {
    font-size: 1.2rem;
  }
  .marquee .sep {
    width: 3rem;
    height: 3rem;
  }
  .nav-link {
    font-size: 2.4rem;
  }
  .nav-animated .nav-chevron {
    width: 1.5rem;
    height: 1.5rem;
  }
  .modal {
    max-width: 95% !important;
    width: 95% !important;
  }
  .modal-content {
    padding: 3rem !important;
    gap: 1rem !important;
  }
  .modal-title {
    font-size: 0.7rem !important;
  }
  .modal-text {
    font-size: 1.2rem !important;
  }
  .modal-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .modal .text-tag {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.4rem !important;
  }
}

/* Hide Sidebar on Mobile */
@media (max-width: 768px) {
  .sidebar-fixed {
    display: none;
  }
}

/* Globe - 404 Page */
.globe-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 4rem auto;
  break-inside: avoid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-container svg {
  width: 100%;
  height: auto;
  display: block;
}
