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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography Helpers */
.hanken {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
}

.quantico {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
}

.quantico.bold {
  font-weight: 700;
}

.dark {
  color: #0b0b0b;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: max(841px, 100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
}

/* Ensure Unicorn Studio canvas fills container */
.hero-bg canvas,
.hero-bg iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Logo */
.logo {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

/* Navigation */
.nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 16px;
  z-index: 1000;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shrunk state - small pill with dots */
.nav.shrunk {
  gap: 12px;
  padding: 12px 16px;
  border-radius: 50px;
}

.nav.shrunk .nav-item {
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0;
  overflow: hidden;
}

.nav.shrunk .nav-item.active {
  background: #fff;
}

.nav.shrunk .nav-item .nav-dot {
  display: none;
}

/* Expand back on hover */
.nav.shrunk:hover {
  gap: 25px;
  padding: 8px;
  border-radius: 16px;
}

.nav.shrunk:hover .nav-item {
  padding: 8px;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: transparent;
  font-size: 14px;
  overflow: visible;
}

.nav.shrunk:hover .nav-item.active {
  background: #171411;
  padding: 8px 16px;
}

.nav.shrunk:hover .nav-item .nav-dot {
  display: block;
}

.nav-item {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #c6c6c6;
  text-decoration: none;
  padding: 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
  color: #fff9f0;
}

.nav-item.active {
  background: #171411;
  color: #fff9f0;
  padding: 8px 16px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 221px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  color: #fff6dc;
  max-width: 900px;
}

.hero-title .quantico {
  color: white;
}

.hero-subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #3d3119;
  max-width: 511px;
}

.hero-subtitle strong {
  font-weight: 700;
}

.mobile-break {
  display: block;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 32px 80px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: black;
  text-decoration: none;
  margin-top: 88px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
   INTERLUDE SECTION (Scroll Animation)
   ============================================ */
.interlude {
  position: relative;
  width: 100%;
}

.interlude-runway {
  height: 280vh;
  position: relative;
}

.interlude-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
}

/* Black Gaussian blur blob at bottom */
.interlude-black {
  position: absolute;
  bottom: -75%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 90%;
  background: black;
  border-radius: 50% 50% 0 0;
  filter: blur(70px);
  pointer-events: none;
  z-index: 5;
  opacity: 1;
  will-change: bottom, height, width;
}

.interlude-black.snap-rise {
  transition: bottom 0.6s ease-out, height 0.6s ease-out, width 0.6s ease-out;
  bottom: 0% !important;
  height: 300% !important;
  width: 220% !important;
}

/* Warm golden triangles */
.interlude-orb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  background:
    linear-gradient(
      35deg,
      rgba(255, 251, 245, 0.95) 0%,
      rgba(255, 245, 220, 0.8) 15%,
      rgba(250, 220, 150, 0.6) 30%,
      rgba(220, 180, 100, 0.4) 45%,
      transparent 60%
    ),
    linear-gradient(
      145deg,
      rgba(255, 251, 245, 0.95) 0%,
      rgba(255, 242, 210, 0.8) 15%,
      rgba(245, 210, 140, 0.6) 30%,
      rgba(210, 170, 90, 0.4) 45%,
      transparent 60%
    );
  filter: blur(50px);
  will-change: transform, opacity;
}

/* Content A - Direction content */
.interlude-content-a {
  position: absolute;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1115px;
  gap: 8px;
  opacity: 1;
  will-change: opacity;
}

.interlude-content-a .direction-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.interlude-content-a .title-line-1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.96px;
  margin: 0;
  background: linear-gradient(90deg, black 0%, #7b5400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.interlude-content-a .title-line-1 .quantico {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
}

.interlude-content-a .title-line-1 .quantico.bold {
  font-weight: 700;
}

.interlude-content-a .direction-subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: black;
  text-align: center;
  margin: 0;
}

.interlude-content-a .direction-subtitle strong {
  font-weight: 700;
}

.interlude-content-a .benefits-cards {
  position: absolute;
  top: 331px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  justify-content: center;
}

.interlude-content-a .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 248px;
  cursor: default;
}

/* Benefit icon styles + hover animations */
.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 4px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-6px) scale(1.08);
}

.benefit-icon svg {
  overflow: visible;
}

.benefit-icon-group {
  transition: filter 0.3s ease;
}

.benefit-card:hover .benefit-icon-group {
  filter: drop-shadow(0 4px 12px rgba(123, 84, 0, 0.15));
}

/* Quick - trail animation on hover */
.benefit-card:hover .trail-1,
.benefit-card:hover .trail-2,
.benefit-card:hover .trail-3,
.benefit-card:hover .trail-4 {
  animation: trailPulse 0.8s ease-in-out infinite alternate;
}

.benefit-card:hover .trail-2 { animation-delay: 0.1s; }
.benefit-card:hover .trail-3 { animation-delay: 0.2s; }
.benefit-card:hover .trail-4 { animation-delay: 0.3s; }

@keyframes trailPulse {
  0% { opacity: 0.2; transform: translateY(0); }
  100% { opacity: 0.7; transform: translateY(4px); }
}

/* Accessible - pulse dot animation on hover */
.benefit-card:hover .pulse-dot {
  animation: pulseGlow 1s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { r: 3; opacity: 0.5; }
  50% { r: 5; opacity: 0.8; }
}

/* Transparent - sparkle animation on hover */
.benefit-card:hover .sparkle-1,
.benefit-card:hover .sparkle-2,
.benefit-card:hover .sparkle-3 {
  animation: sparkle 1.2s ease-in-out infinite;
}

.benefit-card:hover .sparkle-2 { animation-delay: 0.3s; }
.benefit-card:hover .sparkle-3 { animation-delay: 0.6s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* Around - orbit dot animation on hover */
.benefit-card:hover .orbit-dot-1 {
  animation: orbitFloat 2s ease-in-out infinite;
}

.benefit-card:hover .orbit-dot-2 {
  animation: orbitFloat 2s ease-in-out infinite reverse;
}

.benefit-card:hover .orbit-dot-3 {
  animation: orbitFloat 1.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes orbitFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(2px, -2px); }
  50% { transform: translate(0, -3px); }
  75% { transform: translate(-2px, -1px); }
}

.interlude-content-a .benefit-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: black;
  margin: 0;
}

.interlude-content-a .benefit-title strong {
  font-weight: 700;
}

.interlude-content-a .benefit-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
  margin: 0;
  line-height: 1.4;
}

/* Staggered micro-animations for content-a children */
.content-a-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.interlude-content-a.animate-in .content-a-anim {
  opacity: 1;
  transform: translateY(0);
}

.interlude-content-a.animate-in .direction-title.content-a-anim {
  transition-delay: 0s;
}

.interlude-content-a.animate-in .direction-subtitle.content-a-anim {
  transition-delay: 0.15s;
}

.interlude-content-a.animate-in .benefit-card.content-a-anim:nth-child(1) {
  transition-delay: 0.3s;
}

.interlude-content-a.animate-in .benefit-card.content-a-anim:nth-child(2) {
  transition-delay: 0.4s;
}

.interlude-content-a.animate-in .benefit-card.content-a-anim:nth-child(3) {
  transition-delay: 0.5s;
}

.interlude-content-a.animate-in .benefit-card.content-a-anim:nth-child(4) {
  transition-delay: 0.6s;
}

/* White blur for transition back */
.interlude-white {
  position: absolute;
  bottom: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: white;
  border-radius: 50% 50% 0 0;
  filter: blur(60px);
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  will-change: bottom, height, width, opacity;
}

/* Content B - white text on black */
.interlude-content-b {
  position: absolute;
  z-index: 10;
  text-align: center;
  padding: 0 40px;
  max-width: 800px;
  opacity: 0;
  transform: translateY(-40px);
}

/* Selected Work overlay */
.selected-work-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;
  background: white;
  display: flex;
  flex-direction: column;
  padding: 80px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.selected-work-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.selected-work-overlay .selected-work-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.selected-work-overlay .selected-work-top-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.selected-work-overlay.visible .selected-work-top-row {
  opacity: 1;
  transform: translateY(0);
}

.selected-work-overlay .selected-work-header {
  flex-shrink: 0;
}

.selected-work-overlay .selected-work-title {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #2a2555;
  margin-bottom: 0;
}

.selected-work-overlay .selected-work-subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #888;
  margin-top: 0;
}

.selected-work-overlay .showcase-card-small {
  flex: 1;
  background: #ECECEC;
  border-radius: 16px;
  min-height: 80px;
}

.selected-work-overlay .selected-work-showcase {
  position: relative;
  flex: 1;
  margin-top: 36px;
  min-height: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out 0.2s, transform 0.7s ease-out 0.2s;
}

.selected-work-overlay.visible .selected-work-showcase {
  opacity: 1;
  transform: translateY(0);
}

.selected-work-overlay .showcase-card-large {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #ECECEC;
  border-radius: 16px;
}

.selected-work-overlay .showcase-nav-container {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: calc(165.5 / 1280 * 100%);
  aspect-ratio: 165.5 / 95.5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

.selected-work-overlay .showcase-nav {
  display: flex;
  gap: 16px;
}

.selected-work-overlay .nav-arrow {
  width: 48px;
  height: 48px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.selected-work-overlay .nav-arrow:hover {
  opacity: 0.7;
}

.interlude-content-b .line-1,
.interlude-content-b .line-2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: white;
  margin: 0;
}

.interlude-content-b .line-3 {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1.15;
  color: white;
  margin: 0;
  margin-top: 8px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  position: relative;
  width: min(1280px, 90vw);
  height: 773px;
  margin: 80px auto;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
}

/* Frosted Glass Edges */
.frost {
  position: absolute;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.01);
  z-index: 5;
}

.frost-left {
  left: 0;
  top: 101px;
  width: 225px;
  height: 672px;
}

.frost-right {
  right: 0;
  top: 101px;
  width: 225px;
  height: 672px;
}

.frost-top {
  left: 0;
  top: 101px;
  width: 100%;
  height: 140px;
}

.frost-bottom {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
}


/* Corner Dots */
.corner {
  position: absolute;
  width: 6.5px;
  height: 6.5px;
  background: black;
  border-radius: 50%;
}

.corner-tl {
  top: -3px;
  left: -3px;
}

.corner-tr {
  top: -3px;
  right: -3px;
}

.corner-bl {
  bottom: -3px;
  left: -3px;
}

.corner-br {
  bottom: -3px;
  right: -3px;
}

/* Grid Lines */
.grid-lines {
  position: absolute;
  top: 216px;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

.grid-line {
  position: absolute;
  background: linear-gradient(90deg,
    rgba(192, 192, 192, 0.2) 0%,
    black 45%,
    rgba(192, 192, 192, 0.2) 100%
  );
  opacity: 0.8;
}

.grid-line.vertical {
  width: 0.4px;
  height: 188px;
  top: 0;
}

.grid-line.horizontal {
  height: 0.4px;
  width: 440px;
  left: 50%;
  transform: translateX(-50%);
}

.line-1 {
  left: 33.33%;
}

.line-2 {
  left: 66.66%;
}

.line-3 {
  top: 0;
}

.line-4 {
  top: 90px;
}


.step {
  width: 362px;
  height: 281px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.step-description {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: black;
  max-width: 303px;
}

.step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.step-number {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 48px;
  letter-spacing: 0.96px;
  color: black;
}

.step-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: black;
  text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
    line-height: 44px;
    max-width: 600px;
    padding: 0 20px;
  }

  .direction-title {
    font-size: 28px;
    padding: 0 20px;
  }

  .direction-tags {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .tag {
    font-size: 18px;
  }

  .grid-lines,
  .frost {
    display: none;
  }

  /* Interlude tablet */
  .interlude-content-a {
    width: 90%;
  }

  .interlude-content-a .direction-cards {
    gap: 40px;
  }

  /* How We Work tablet */
  .how-we-work {
    padding: 80px 40px;
  }

  .hww-layout {
    flex-direction: column;
    gap: 48px;
  }

  .hww-text {
    width: 100%;
    text-align: center;
  }

  .hww-gradient-box {
    width: 100%;
    max-width: 494px;
    height: 476px;
  }

  .hww-cards-stack {
    width: 100%;
    max-width: 494px;
  }

  /* What We Build tablet */
  .what-we-build {
    padding: 60px 40px;
  }

  /* Secondary CTA tablet */
  .secondary-cta {
    padding: 60px 40px;
  }

  .secondary-cta-content {
    width: 100%;
    max-width: 600px;
  }

  /* Footer tablet */
  .footer-bottom {
    gap: 60px;
    flex-wrap: wrap;
  }

  .footer-social {
    width: auto;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 80px;
  }

  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 101;
  }

  .logo-img {
    height: 44px;
  }

  .hero-content {
    margin-top: 140px;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
  }

  .hero {
    justify-content: center;
  }

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

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: rgba(61, 49, 25, 0.9);
  }

  .cta-button {
    padding: 18px 48px;
    font-size: 16px;
    margin-top: 72px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-title {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: black;
  text-align: center;
}

.contact-subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 24px;
}

.contact .cta-button {
  margin-top: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for steps */
.step.fade-in:nth-child(1) { transition-delay: 0s; }
.step.fade-in:nth-child(2) { transition-delay: 0.15s; }
.step.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* Tag hover effects */
.tag {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Nav item hover animation */
.nav-item {
  position: relative;
  overflow: hidden;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff9f0;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover::after {
  width: 60%;
  left: 20%;
}

.nav-item.active::after {
  display: none;
}

/* CTA button arrow animation */
.cta-button .cta-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translate(4px, -4px);
}

/* Logo hover */
.logo {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
}

/* Step card hover */
.step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}


/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */
.menu-toggle {
  display: none;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 20, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-item {
    font-size: 24px;
    padding: 16px 24px;
  }

  .nav-item.active {
    padding: 16px 32px;
  }

  .logo {
    z-index: 101;
  }

  .menu-toggle {
    top: 20px;
    right: 20px;
    z-index: 101;
  }
}

/* ============================================
   SELECTED WORK SECTION (hidden - using overlay in sticky)
   ============================================ */
.selected-work {
  display: none;
}

.selected-work-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.selected-work-top-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.selected-work-header {
  flex-shrink: 0;
}

.selected-work-showcase {
  position: relative;
  flex: 1;
  margin-top: 12px;
  min-height: 0;
}

.selected-work-title {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: #2a2555;
  margin-bottom: 8px;
}

.selected-work-subtitle {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: #888;
  margin-top: 4px;
}

.showcase-card-small {
  flex: 1;
  background: #ECECEC;
  border-radius: 16px;
  min-height: 80px;
}

.showcase-card-large {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #ECECEC;
  border-radius: 16px;
}

.showcase-nav-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(165.5 / 1280 * 100%);
  aspect-ratio: 165.5 / 95.5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

.showcase-nav {
  display: flex;
  gap: 16px;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.nav-arrow:hover {
  opacity: 0.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 80px;
  background: white;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 160px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-top {
  grid-column: 1;
  grid-row: 1;
}

.pricing-cta {
  grid-column: 2;
  grid-row: 1;
}

.pricing-steps {
  grid-column: 1 / -1;
  grid-row: 2;
}

.pricing-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: black;
  margin: 0;
}

.pricing-subtitle {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  color: #9c9c9c;
}

.pricing-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 80px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: black;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  transition: all 0.2s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
}

.pricing-cta .cta-arrow {
  transition: transform 0.3s ease;
}

.pricing-cta:hover .cta-arrow {
  transform: translate(4px, -4px);
}

.pricing-steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.pricing-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.pricing-step-icon {
  width: 32px;
  height: 32px;
}

.pricing-step-title {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: normal;
  color: black;
  margin: 0;
}

.pricing-step-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: black;
  max-width: 289px;
  margin: 0;
}

/* Staggered fade-in for pricing */
.pricing-top.fade-in {
  transition-delay: 0.2s;
}

.pricing-steps.fade-in {
  transition-delay: 0.35s;
}

/* ============================================
   HOW WE WORK SECTION (New horizontal layout)
   ============================================ */
.how-we-work {
  width: 100%;
  background: white;
  box-sizing: border-box;
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
}

.hww-layout {
  display: flex;
  align-items: center;
  gap: 74px;
  max-width: 1280px;
  margin: 0 auto;
}

.hww-text {
  flex-shrink: 0;
  width: 546px;
}

.hww-intro {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: black;
  margin: 0;
}

.hww-intro-sub {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  color: #9c9c9c;
  margin: 0;
}

/* Gradient box container */
.hww-gradient-box {
  position: relative;
  width: 494px;
  height: 476px;
  flex-shrink: 0;
}

/* Angular (conic) gradient background with layer blur */
.hww-gradient-bg {
  position: absolute;
  inset: -20px;
  background: conic-gradient(
    from 90deg,
    rgb(155, 130, 100) 0%,
    rgb(116, 98, 75) 25%,
    rgb(78, 65, 50) 50%,
    rgb(58, 49, 37) 62.5%,
    rgb(39, 33, 25) 75%,
    rgb(19, 16, 12) 87.5%,
    rgb(10, 8, 6) 93.75%,
    rgb(0, 0, 0) 100%
  );
  filter: blur(50px);
  border-radius: 24px;
}

/* Glass cards stack */
.hww-cards-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 494px;
  z-index: 1;
}

.hww-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-top: 0.5px solid rgba(255, 255, 255, 0.18);
  border-left: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hww-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.hww-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hww-step-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.48px;
  color: white;
  margin: 0;
}

.hww-step-number {
  font-size: 24px;
  letter-spacing: 0.48px;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

.hww-step-desc {
  font-size: 16px;
  line-height: normal;
  color: #d9d9d9;
  margin: 0;
}

/* ============================================
   WHAT WE BUILD SECTION
   ============================================ */
.what-we-build {
  width: 100%;
  background: white;
  padding: 80px 80px 100px;
  box-sizing: border-box;
}

.wwb-label {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #9c9c9c;
  text-align: center;
  margin: 0 0 60px;
}

.wwb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.wwb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.wwb-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.wwb-item:hover .wwb-icon {
  transform: translateY(-4px);
}

.wwb-icon svg {
  transition: opacity 0.3s ease;
}

.wwb-item:hover .wwb-icon svg {
  opacity: 0.8;
}

.wwb-item {
  cursor: default;
}

.wwb-item-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: black;
  margin: 0;
}

/* Staggered fade-in for How We Work */
.hww-layout.fade-in {
  transition-delay: 0.2s;
}

/* Staggered fade-in for Secondary CTA */
.secondary-cta-top-group.fade-in {
  transition-delay: 0.2s;
}

.secondary-cta-note.fade-in {
  transition-delay: 0.4s;
}

/* ============================================
   SECONDARY CTA SECTION
   ============================================ */
.secondary-cta {
  background: #0a0806;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 102vh;
  padding: 80px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* SVG Gradient shapes for Secondary CTA */
.cta-gradient-svg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Shape 1: Coming from bottom-left, tip entering diagonally */
.cta-gradient-1 {
  width: 420%;
  height: 300%;
  bottom: -193%;
  left: -242%;
  transform: rotate(-20deg);
  opacity: 1;
}

/* Shape 2: Coming from bottom-right, tip entering towards center (mirrored) */
.cta-gradient-2 {
  width: 428%;
  height: 306%;
  bottom: -193%;
  right: -242%;
  transform: scaleX(-1) rotate(-22deg);
  opacity: 0.9;
}

.secondary-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 160px;
  width: 490px;
  position: relative;
  z-index: 1;
}

.secondary-cta-top-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  margin-top: -48px;
}

.secondary-cta-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  text-align: center;
}

.secondary-cta-title {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: normal;
  color: white;
  margin: 0;
  text-align: center;
  width: 100%;
}

.secondary-cta-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  text-decoration: none;
}

.secondary-cta-text p {
  margin: 0;
  text-decoration: none;
}

.secondary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  padding: 24px 80px;
  background: transparent;
  border: none;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  transition: all 0.2s ease;
  z-index: 2;
}

.secondary-cta-button:hover {
  color: rgba(255, 255, 255, 0.85);
}

.secondary-cta-button:hover {
  transform: translateY(-2px);
}

.secondary-cta-button .cta-arrow {
  transition: transform 0.3s ease;
}

.secondary-cta-button:hover .cta-arrow {
  transform: translate(4px, -4px);
}

.secondary-cta-note {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.secondary-cta-note p {
  margin: 0 0 4px;
}

.secondary-cta-note strong {
  font-weight: 700;
  color: white;
}



/* ============================================
   FOOTER SECTION
   ============================================ */
.site-footer {
  background: white;
  padding: 80px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 118px;
}

.footer-email {
  font-family: 'Quantico', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: black;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-nav a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #c6c6c6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:first-child {
  color: black;
}

.footer-nav a:hover {
  color: black;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 339px;
}

.footer-tagline-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: black;
  margin: 0;
  width: 220px;
  flex-shrink: 0;
}

.footer-logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  flex-shrink: 0;
}

.footer-social a {
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-social a:hover {
  opacity: 0.6;
}

/* Staggered fade-in for footer */
.footer-top.fade-in {
  transition-delay: 0.1s;
}

.footer-bottom.fade-in {
  transition-delay: 0.25s;
}



/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
  .selected-work,
  .pricing,
  .note-section {
    padding: 40px 20px;
  }

  .pricing-section {
    padding: 40px 20px;
  }

  .pricing-content {
    gap: 60px 40px;
  }

  .pricing-steps {
    flex-direction: column;
    gap: 40px;
  }

  .pricing-cta {
    padding: 16px 40px;
    font-size: 16px;
  }

  .note-content {
    flex-direction: column;
    text-align: center;
  }

  .large-logo {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .selected-work-title {
    font-size: 32px;
  }

  .pricing-title {
    font-size: 28px;
  }

  .showcase-placeholder {
    height: 300px;
  }

  .footer-cta {
    min-height: 600px;
    padding: 40px 20px;
  }

  .footer-text {
    font-size: 20px;
  }

  /* Interlude Section Mobile */
  .interlude-runway {
    height: 250vh;
  }

  .interlude-content-a {
    width: 100%;
    padding: 0 24px;
    top: 80px;
    gap: 12px;
  }

  .interlude-content-a .title-line-1 {
    font-size: 28px;
  }

  .interlude-content-a .direction-subtitle {
    font-size: 16px;
    padding: 0 8px;
  }

  .interlude-content-a .direction-cards {
    position: relative;
    top: auto;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .interlude-content-a .card-title {
    font-size: 20px;
  }

  .interlude-content-a .card-desc {
    font-size: 16px;
    width: 100%;
    max-width: 280px;
  }

  .interlude-content-b .line-1,
  .interlude-content-b .line-2 {
    font-size: 18px;
  }

  .interlude-content-b .line-3 {
    font-size: 48px;
  }

  /* Benefits cards mobile */
  .interlude-content-a .benefits-cards {
    position: relative;
    top: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    justify-content: center;
  }

  .interlude-content-a .benefit-card {
    width: calc(50% - 12px);
    max-width: none;
  }

  .interlude-content-a .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .interlude-content-a .benefit-icon svg {
    width: 56px;
    height: 56px;
  }

  .interlude-content-a .benefit-title {
    font-size: 16px;
  }

  .interlude-content-a .benefit-desc {
    font-size: 13px;
  }

  /* How We Work Mobile */
  .how-we-work {
    padding: 0 20px 60px;
    overflow: hidden;
    margin-top: -20px;
  }

  .hww-layout {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .hww-text {
    width: 100%;
    text-align: center;
  }

  .hww-intro {
    font-size: 24px;
  }

  .hww-intro-sub {
    font-size: 24px;
  }

  .hww-gradient-box {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .hww-gradient-bg {
    inset: -10px;
    filter: blur(40px);
    border-radius: 0;
  }

  .hww-cards-stack {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
  }

  .hww-step-card {
    padding: 20px;
  }

  .hww-step-title {
    font-size: 18px;
  }

  .hww-step-number {
    font-size: 16px;
  }

  .hww-step-desc {
    font-size: 14px;
  }

  /* What We Build Mobile */
  .what-we-build {
    padding: 60px 20px;
  }

  .wwb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .wwb-label {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .wwb-item-text {
    font-size: 16px;
  }

  .wwb-icon {
    width: 48px;
    height: 48px;
  }

  .wwb-icon svg {
    width: 44px;
    height: 44px;
  }

  /* Pricing Section Mobile */
  .pricing-section {
    padding: 44px 20px 60px;
  }

  .pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .pricing-top {
    text-align: center;
  }

  .pricing-title {
    font-size: 24px;
    text-wrap: balance;
  }

  .pricing-subtitle {
    text-wrap: balance;
  }

  .pricing-step-desc {
    text-wrap: balance;
  }

  .pricing-cta {
    padding: 18px 40px;
    font-size: 16px;
    order: 3;
  }

  .pricing-step {
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .pricing-step-title {
    font-size: 18px;
  }

  .pricing-step-desc {
    font-size: 14px;
    max-width: 100%;
  }

  /* Secondary CTA Mobile */
  .secondary-cta {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 24px 60px;
    flex-direction: column;
  }

  .cta-gradient-1 {
    width: 280%;
    height: 240%;
    bottom: -140%;
    left: -150%;
  }

  .cta-gradient-2 {
    width: 280%;
    height: 240%;
    bottom: -140%;
    right: -150%;
  }

  .secondary-cta-content {
    width: 100%;
    gap: 48px;
  }

  .secondary-cta-top-group {
    gap: 36px;
    margin-top: -24px;
  }

  .secondary-cta-title {
    font-size: 24px;
  }

  .secondary-cta-text {
    font-size: 18px;
  }

  .secondary-cta-button {
    padding: 18px 36px;
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .secondary-cta-note {
    position: relative;
    bottom: auto;
    font-size: 13px;
    margin-top: 24px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .footer-email {
    font-size: 20px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-tagline-text {
    font-size: 16px;
    width: 100%;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-social {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
  }

  /* Selected Work Overlay Mobile */
  .selected-work-overlay {
    padding: 40px 20px;
  }

  .selected-work-overlay .selected-work-top-row,
  .selected-work-top-row {
    flex-direction: column;
  }

  .selected-work-overlay .showcase-card-small,
  .showcase-card-small {
    min-height: 60px;
  }

  .selected-work-overlay .selected-work-title,
  .selected-work-title {
    font-size: 28px;
  }

  .selected-work-overlay .selected-work-subtitle {
    font-size: 14px;
  }
}

/* ============================================
   LARGE SCREEN RESPONSIVENESS
   ============================================ */

/* Large screens (1440px+) */
@media (min-width: 1440px) {
  .hero {
    height: 100vh;
    min-height: 841px;
  }

  .hero-title {
    font-size: clamp(48px, 3.5vw, 64px);
    line-height: 1.15;
    max-width: 1100px;
  }

  .hero-subtitle {
    font-size: clamp(20px, 1.4vw, 26px);
    max-width: 600px;
  }

  .interlude-content-a {
    width: 80%;
    max-width: 1400px;
  }

  .interlude-content-a .title-line-1 {
    font-size: clamp(48px, 3.5vw, 64px);
  }

  .interlude-content-a .direction-subtitle {
    font-size: clamp(20px, 1.4vw, 26px);
  }

  .interlude-content-a .direction-cards {
    gap: clamp(80px, 8vw, 120px);
  }

  .interlude-content-a .card-title {
    font-size: clamp(24px, 1.8vw, 32px);
  }

  .interlude-content-a .card-desc {
    font-size: clamp(20px, 1.4vw, 24px);
    width: clamp(210px, 18vw, 280px);
  }

  .how-we-work {
    padding: 120px clamp(80px, 8vw, 200px);
  }

  .hww-layout {
    max-width: 1400px;
  }

  .hww-intro {
    font-size: clamp(36px, 2.5vw, 48px);
  }

  .hww-intro-sub {
    font-size: clamp(36px, 2.5vw, 48px);
  }

  .hww-gradient-box {
    width: clamp(494px, 35vw, 600px);
    height: clamp(476px, 34vw, 580px);
  }

  .hww-cards-stack {
    width: clamp(494px, 35vw, 600px);
  }

  .pricing-section {
    padding: 120px clamp(80px, 8vw, 200px);
  }

  .pricing-content {
    max-width: 1400px;
  }

  .pricing-title {
    font-size: clamp(36px, 2.5vw, 48px);
  }

  .selected-work-overlay .selected-work-inner {
    max-width: 1400px;
  }

  .selected-work-overlay .selected-work-title {
    font-size: clamp(40px, 3vw, 56px);
  }

  .site-footer {
    padding: 80px clamp(80px, 8vw, 200px);
  }

  .footer-bottom {
    gap: clamp(200px, 20vw, 400px);
  }
}

/* Extra large screens (1920px+) */
@media (min-width: 1920px) {
  .hero-content {
    margin-top: 25vh;
  }

  .hero-title {
    font-size: clamp(56px, 3.2vw, 72px);
    max-width: 1200px;
  }

  .interlude-content-a {
    width: 70%;
    max-width: 1600px;
  }

  .interlude-content-a .direction-cards {
    top: clamp(401px, 35vh, 500px);
  }

  .hww-gradient-box {
    width: 560px;
    height: 540px;
  }

  .hww-cards-stack {
    width: 560px;
  }
}

/* Ultra wide screens (2560px+) */
@media (min-width: 2560px) {
  .hero-title {
    font-size: 72px;
    max-width: 1300px;
  }

  .hero-subtitle {
    font-size: 28px;
    max-width: 700px;
  }

  .interlude-content-a .title-line-1 {
    font-size: 72px;
  }

  .hww-intro {
    font-size: 56px;
  }

  .hww-intro-sub {
    font-size: 56px;
  }

  .hww-gradient-box {
    width: 600px;
    height: 580px;
  }

  .hww-cards-stack {
    width: 600px;
  }

  .hww-step-title {
    font-size: 28px;
  }

  .hww-step-desc {
    font-size: 18px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
    line-height: 34px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .cta-button {
    padding: 16px 36px;
    font-size: 15px;
    margin-top: 60px;
  }

  .interlude-content-a .title-line-1 {
    font-size: 22px;
  }

  .interlude-content-a .benefits-cards {
    gap: 20px;
  }

  .interlude-content-a .benefit-card {
    width: calc(50% - 10px);
  }

  .interlude-content-b .line-3 {
    font-size: 36px;
  }

  .hww-intro {
    font-size: 20px;
  }

  .hww-intro-sub {
    font-size: 20px;
  }

  .wwb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .wwb-label {
    font-size: 20px;
  }

  .pricing-title {
    font-size: 20px;
  }

  .pricing-cta {
    padding: 16px 32px;
    font-size: 15px;
  }

  .secondary-cta {
    padding: 60px 20px 48px;
  }

  .secondary-cta-title {
    font-size: 20px;
  }

  .secondary-cta-text {
    font-size: 16px;
  }

  .secondary-cta-button {
    padding: 16px 28px;
    font-size: 15px;
  }

  .footer-email {
    font-size: 16px;
    overflow-wrap: break-word;
    word-break: normal;
  }
}
