/* ============================================
   Wilcoe — Apple-inspired Marketing Site
   ============================================ */

/* --- Page Transition --- */
.transition {
  z-index: 2;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: clip;
}

.transition__middle {
  opacity: 0;
  background-color: #fbfbfd;
  position: fixed;
  inset: 0;
}

.page-transition__wrapper {
  overflow: clip;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1d1d1f;
  --white: #fbfbfd;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-400: #86868b;
  --gray-600: #6e6e73;
  --gray-800: #424245;
  --surface-dark: #023377;
  --accent: #1a459c;
  --accent-hover: #153a83;
  --accent-orange: #f7931e;
  --accent-orange-hover: #e5830f;
  --font-heading: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1080px;
  --section-padding: clamp(80px, 12vw, 160px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overscroll-behavior: none;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Scroll Progress Bar (right side) --- */
.progress-bar-wrap {
  z-index: 1001;
  cursor: pointer;
  width: 8px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  transition: width 0.2s;
}

.progress-bar-wrap:hover {
  width: 12px;
}

.progress-bar {
  transform-origin: top;
  transform-style: preserve-3d;
  background: var(--accent-orange);
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  border-radius: 2px 0 0 2px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Progress Navigation --- */
.progress-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-size: 14px;
}

.progress-nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  pointer-events: none;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  mask-image: linear-gradient(to bottom, black 0%, black 52px, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 52px, transparent 100%);
  z-index: -1;
}

.progress-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.progress-nav__wrapper {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50em;
  padding: 0.25em;
  transition: background-color 0.3s ease;
}

.progress-nav__list {
  border-radius: 50em;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.progress-nav__indicator {
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50em;
  width: 2em;
  height: 2em;
  position: absolute;
  left: -2.5em;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.progress-nav__btn {
  z-index: 3;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  justify-content: center;
  align-items: center;
  height: 2em;
  padding: 0 0.875em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.progress-nav__btn.is--before {
  z-index: 1;
  width: 2em;
  height: 2em;
  padding: 0;
  position: absolute;
  right: 100%;
}

.progress-nav__btn.is--after {
  z-index: 1;
  width: 2em;
  height: 2em;
  padding: 0;
  position: absolute;
  left: 100%;
}

.progress-nav__btn-text {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0%) rotate(0.001deg);
}

.progress-nav__btn-text.is--duplicate {
  position: absolute;
  top: 100%;
}

.progress-nav__btn:hover .progress-nav__btn-text,
.progress-nav__contact-btn:hover .progress-nav__btn-text {
  transform: translateY(-100%) rotate(0.001deg);
}

.progress-nav__contact-btn {
  color: #fff;
  background-color: var(--accent-orange);
  border-radius: 50em;
  height: 2.25em;
  padding: 0 1.25em;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.progress-nav__contact-btn:hover {
  background-color: var(--accent-orange-hover);
}

.progress-nav__contact-btn .progress-nav__btn-text {
  color: #fff;
}

/* --- Hamburger Toggle (mobile) --- */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

.hamburger-toggle__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
              opacity 0.3s,
              background 0.3s;
}

/* Animate to X when active */
[data-navigation-status="active"] ~ .progress-nav .hamburger-toggle__bar:first-child,
.hamburger-toggle.is--active .hamburger-toggle__bar:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

[data-navigation-status="active"] ~ .progress-nav .hamburger-toggle__bar:last-child,
.hamburger-toggle.is--active .hamburger-toggle__bar:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* --- Progress Nav: Light mode (over light sections) --- */
.progress-nav.is--light .progress-nav__logo {
  color: var(--black);
}

.progress-nav.is--light .progress-nav__wrapper {
  background-color: rgba(0, 0, 0, 0.06);
}

.progress-nav.is--light .progress-nav__indicator {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-nav.is--light .progress-nav__btn {
  color: var(--gray-600);
}

.progress-nav.is--light .hamburger-toggle__bar {
  background: var(--black);
}

/* --- Scaling Hamburger Navigation --- */
.hamburger-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.hamburger-nav__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger-nav__group {
  position: absolute;
  top: 60px;
  right: 20px;
  transform-origin: top right;
  transform: scale(0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  opacity: 0;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: saturate(180%) blur(40px);
  -webkit-backdrop-filter: saturate(180%) blur(40px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 0.5px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-nav__link {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  transition: background 0.2s;
}

.hamburger-nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hamburger-nav__cta {
  margin: 8px 16px 4px;
  font-size: 15px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  text-align: center;
  width: calc(100% - 32px);
}

.hamburger-nav__cta:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.08);
}

/* Divider before CTA */
.hamburger-nav__cta::before {
  content: '';
  display: block;
  position: relative;
  top: -12px;
  left: -8px;
  width: calc(100% + 16px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: -4px;
}

/* Active state */
.hamburger-nav[data-navigation-status="active"] {
  pointer-events: auto;
}

.hamburger-nav[data-navigation-status="active"] .hamburger-nav__bg {
  opacity: 1;
}

.hamburger-nav[data-navigation-status="active"] .hamburger-nav__group {
  transform: scale(1);
  opacity: 1;
}

/* --- Hero --- */
/* --- Iridescence WebGL Background --- */
.gradient-blobs-wrap {
  position: relative;
  overflow: hidden;
}
#iridescence-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.iridescence-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 12, 45, 0.45);
  pointer-events: none;
}
.gradient-blobs-wrap > section {
  position: relative;
  z-index: 2;
}
.gradient-blobs-wrap .hero,
.gradient-blobs-wrap .section-highlight,
.gradient-blobs-wrap .section-dark {
  background: transparent;
}
.gradient-blobs-wrap .section-headline,
.gradient-blobs-wrap .section-body,
.gradient-blobs-wrap .overline,
.gradient-blobs-wrap .text-draw__span,
.gradient-blobs-wrap .cta-link,
.gradient-blobs-wrap .scroll-indicator {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-dark);
  color: var(--white);
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 1080px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-period {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 400;
  color: #c2c8d4;
  line-height: 1.6;
  max-width: none;
  margin: 0 auto 16px;
}

.scroll-indicator {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--accent-orange);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.scroll-indicator svg {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Highlight Text on Scroll --- */
.section-highlight {
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 10vh 0;
}
.section-highlight .container {
  max-width: 1100px;
}
.highlight-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.highlight-text .highlight-word {
  display: inline-block;
  white-space: pre;
}
.highlight-text .highlight-char {
  display: inline-block;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background: var(--surface-dark);
  color: var(--white);
}

.section-statement {
  background: var(--gray-50);
}

.overline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.section-dark .overline {
  color: var(--accent-orange);
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-dark .section-headline {
  letter-spacing: 0.005em;
  font-weight: 600;
}

.section-body {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-body {
  color: #c2c8d4;
}

/* --- Intro Section --- */
#intro {
  position: relative;
}

.intro-fade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--surface-dark) 35%, #012169 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#intro > .container {
  position: relative;
  z-index: 1;
}

.intro-block {
  max-width: 960px;
}

.intro-block .section-body {
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

/* --- Draw Underline --- */
.draw-line-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  margin-bottom: 32px;
}

.text-draw {
  cursor: pointer;
  margin-right: 1em;
  padding-top: 0.625em;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

.text-draw__span {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.text-draw__box {
  color: var(--accent-orange);
  width: 100%;
  height: 0.625em;
  position: relative;
}

.text-draw__box svg {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: visible !important;
}

.cta-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--accent-orange);
  transition: color 0.2s;
}

.cta-link:hover {
  color: var(--accent-orange-hover);
}

/* --- Magnetic Button --- */
.btn-magnetic {
  font-size: 1.4em;
  position: relative;
  display: inline-block;
  margin-top: 32px;
}

.btn-magnetic__click {
  cursor: pointer;
  border-radius: 4em;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-magnetic__fill {
  background-color: var(--accent-orange);
  width: 100%;
  height: 100%;
  position: absolute;
  transition: background-color 0.3s;
}

.btn-magnetic__click:hover .btn-magnetic__fill {
  background-color: var(--accent-orange-hover);
}

.btn-magnetic__content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.75em 2em;
  display: flex;
  position: relative;
}

.btn-magnetic__text {
  position: relative;
  overflow: hidden;
}

.btn-magnetic__text-p {
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.btn-magnetic__text-p.is--duplicate {
  position: absolute;
  top: 100%;
}

.btn-magnetic__click .btn-magnetic__text-p {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translateY(0%) rotate(0.001deg);
}

.btn-magnetic__click:hover .btn-magnetic__text-p {
  transform: translateY(-100%) rotate(0.001deg);
}

/* --- Tagline Banner --- */
.section-tagline {
  background: #012169;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.section-tagline::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #012169);
  pointer-events: none;
}

.section-divider-line {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.section-divider-line__svg {
  width: 100%;
  height: 60px;
  color: #00BFFF;
  overflow: visible;
  padding-bottom: 24px;
}

.section-tagline .draw-line-row {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  gap: 0.5em;
}

.section-tagline .text-draw {
  margin-right: 1.5em;
}

.section-tagline .text-draw__span {
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
}

.section-tagline .text-draw__box {
  color: #00BFFF;
  height: 1em;
}

.section-tagline .text-draw__box svg {
  -webkit-mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.47));
  mask-image: linear-gradient(to right, black 50%, rgba(0,0,0,0.47));
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.story-list, .check-list {
  margin-top: 24px;
}

.story-list li, .check-list li {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.12);
  color: var(--gray-600);
}

.section-dark .story-list li,
.section-dark .check-list li {
  color: #c2c8d4;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.list-label {
  font-weight: 600;
  color: var(--black);
}

.section-dark .list-label {
  color: var(--white);
}

.deliverables-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 40px;
}

.section-dark .deliverables-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.deliverables-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.deliverables-card ul li {
  font-size: 21px;
  padding: 12px 0;
  padding-left: 1.6em;
  position: relative;
  border-bottom: 1px solid rgba(128, 128, 128, 0.08);
  color: var(--gray-600);
}
.deliverables-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 600;
}

.section-dark .deliverables-card ul li {
  color: #c2c8d4;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.deliverables-card ul li:last-child {
  border-bottom: none;
}

/* --- Stacked Cards Slider --- */
.stack-cards {
  width: 100%;
  position: relative;
}
.stacked-cards__stack {
  z-index: 0;
  width: 100%;
  position: relative;
}
.stack-cards__before {
  padding-top: 117.5%;
}
.stacked-cards__collection {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.stack-cards__list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.stack-cards__item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.stack-cards__card {
  transition: box-shadow 0.25s cubic-bezier(0.625, 0.05, 0, 1);
  background-color: var(--white);
  border: 3px solid var(--black);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0);
}
.stack-cards__item.is--active .stack-cards__card,
.stack-cards__item.is--second .stack-cards__card {
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.15);
}
.stack-cards__card-image {
  pointer-events: none;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 10px;
  width: calc(100% - 24px);
  height: calc(100% - 60px);
  position: absolute;
  top: 12px;
  left: 12px;
}
.stack-cards__card--checklist {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-cards__card--checklist .deliverables-card {
  background: none;
  padding: 32px;
  width: 100%;
  border-radius: 0;
}
.stack-cards__card--checklist .deliverables-card ul li {
  color: var(--gray-600);
  border-bottom-color: rgba(128, 128, 128, 0.12);
}
.section-dark .stack-cards__card--checklist .deliverables-card ul li {
  color: var(--gray-600);
  border-bottom-color: rgba(128, 128, 128, 0.12);
}
.stacked-cards__controls {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -12px;
  position: relative;
}
.shuffle-btn {
  gap: 6px;
  color: var(--black);
  background-color: var(--accent-orange);
  border: none;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 20px 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.shuffle-btn:hover {
  background-color: var(--accent-orange-hover);
}
.shuffle-btn__span {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.shuffle-btn__icon-svg {
  width: 18px;
  color: var(--white);
}

/* --- Statement Section --- */
.statement-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* --- Draggable Stickers --- */
.section-stickers {
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
}
.sticker-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70vh;
  display: flex;
  position: relative;
}
.sticker-text-wrap {
  text-align: center;
  max-width: 860px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}
.sticker-img-wrap {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: -2rem;
  overflow: visible;
}
.sticker-item {
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.sticker-item:active {
  cursor: grabbing;
}
.sticker-item.is--1 { top: 6%; left: 6%; transform: rotate(-6deg); }
.sticker-item.is--2 { top: 18%; right: 28%; transform: rotate(3deg); }
.sticker-item.is--3 { bottom: 14%; left: 10%; transform: rotate(5deg); }
.sticker-item.is--4 { bottom: 6%; left: 46%; transform: rotate(-4deg); }
.sticker-item.is--5 { top: 34%; left: 8%; transform: rotate(-3deg); }
.sticker-item.is--6 { bottom: 28%; right: 12%; transform: rotate(6deg); }
.sticker-item.is--7 { top: 10%; right: 12%; transform: rotate(-5deg); }
.sticker-item.is--8 { bottom: 4%; right: 4%; transform: rotate(2deg); }

/* Post-it Notes */
.postit {
  width: clamp(100px, 12vw, 150px);
  height: clamp(100px, 12vw, 150px);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  border-radius: 3px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  position: relative;
}
.postit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.04));
  border-radius: 0 0 3px 3px;
  pointer-events: none;
}
.postit--pink   { background: #f6c2d9; }
.postit--yellow { background: #fff69b; }
.postit--green  { background: #bcdfc9; }
.postit--blue   { background: #a1c8e9; }

@media (max-width: 768px) {
  .sticker-container {
    min-height: 60vh;
  }
  .postit {
    width: clamp(80px, 22vw, 120px);
    height: clamp(80px, 22vw, 120px);
    font-size: clamp(13px, 3vw, 16px);
    padding: 10px;
  }
}

.statement-headline {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 48px;
}

/* --- Typewriter --- */
.typewriter {
  font-size: clamp(32px, 4.5vw, 56px);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--gray-600);
  margin-bottom: 48px;
}
.typewriter__static {
  color: var(--gray-600);
}
.typewriter__rotating {
  color: var(--black);
  font-weight: 700;
}
.typewriter__cursor {
  display: inline-block;
  color: var(--accent-orange);
  font-weight: 300;
  animation: typewriterBlink 0.6s step-end infinite;
  margin-left: 1px;
}
@keyframes typewriterBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.statement-coda {
  font-family: var(--font-heading);
  color: var(--black);
}

/* --- Emoji Rain --- */
.emoji-rain-container {
  z-index: 150;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}
.single-rain-emoji {
  will-change: transform;
  width: max(60px, 8vw);
  position: absolute;
}
.single-rain-emoji.hidden {
  opacity: 0;
}
.single-rain-emoji-image-fire,
.single-rain-emoji-image-love,
.single-rain-emoji-image-thumbs-up,
.single-rain-emoji-image-thumbs-down {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(48px, 5vw);
  line-height: 1;
}
.single-rain-emoji-image-thumbs-down {
  rotate: 180deg;
}
.emoji-rain-btn {
  cursor: pointer;
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--accent-orange);
  border-radius: 100px;
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.3s cubic-bezier(.45, .422, .269, 1.702), background-color 0.2s ease, border-color 0.2s ease;
  transform: scale(1) rotate(0.001deg);
}
.emoji-rain-btn:hover {
  transform: scale(1.05) rotate(0.001deg);
  background-color: #fff5e6;
  border-color: var(--accent-orange-hover);
}
.emoji-rain-btn:active {
  transform: scale(0.97) rotate(0.001deg);
}

/* --- 3D Image Carousel --- */
.img-carousel__wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70vh;
  display: flex;
  margin-top: 64px;
}

.img-carousel__list {
  z-index: 1;
  perspective: 90vw;
  perspective-origin: 50%;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 50vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 1vw;
  display: flex;
  position: relative;
}

.img-carousel__panel {
  z-index: 0;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  width: 13em;
  height: 39em;
  display: flex;
  position: absolute;
}

.img-carousel__panel:nth-of-type(even) {
  justify-content: center;
}

.img-carousel__item {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.img-carousel__img {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

@media screen and (max-width: 767px) {
  .img-carousel__wrap {
    min-height: 60vh;
    margin-top: 24px;
  }
  .img-carousel__list {
    width: 100vw;
    height: 80vw;
    font-size: 2.2vw;
  }
  .section-statement {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* --- Apple Dock (Bottom) --- */
.dock {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 999;
  font-size: clamp(10px, 1vw, 16px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dock.dock--hidden {
  transform: translateX(-50%) translateY(calc(100% + 20px));
  pointer-events: none;
}

/* Dock heading — fixed independently, NOT inside the dock */
.dock-heading {
  position: fixed;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dock-heading--hidden {
  opacity: 0;
  pointer-events: none;
}

.dock-shelf {
  position: relative;
}

/* Fixed-height glass shelf that doesn't scale with icons */
.dock-shelf::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.6em;
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  z-index: -1;
}

.dock-list {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0 0.8em 0.4em;
  gap: 0;
}

.dock-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 4em;
  transition: width 0.5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.dock-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.35em;
}

.dock-item__icon {
  width: 100%;
  object-fit: contain;
  border-radius: 22%;
}

.dock-item__icon--custom {
  background: #1a459c;
  padding: 14%;
  object-fit: contain;
}

.dock-item__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.16, 1, .3, 1),
              transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.dock-item:hover .dock-item__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* Notification badge on dock icons */
.dock-item__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: #FF3366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  padding: 0 5px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  pointer-events: none;
  animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.dock-item.sibling-far {
  width: 5em;
}

.dock-item.sibling-close {
  width: 6em;
}

.dock-item.hover {
  width: 7em;
}

/* --- Dock Modal --- */
.dock-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dock-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.dock-modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 640px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.dock-modal-overlay.active .dock-modal {
  transform: scale(1) translateY(0);
}

.dock-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.dock-modal__app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.dock-modal__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.dock-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.dock-modal__close:hover {
  color: var(--black);
}

.dock-modal__body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.dock-modal__body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Skill Modal Content (inside dock modal) --- */
.skill-modal__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.skill-modal__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-orange);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.skill-modal__link:hover {
  background: var(--accent-orange-hover);
}

.skill-modal__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.skill-modal__cat-card {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-modal__cat-card strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.skill-modal__cat-card span {
  font-size: 13px;
  color: var(--gray-400);
}

.skill-modal__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-modal__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
  position: relative;
}

.skill-modal__card--new {
  border-color: #FF3366;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.04), var(--gray-50) 60%);
}

.skill-modal__card--new:hover {
  border-color: #FF3366;
}

.skill-modal__new-badge {
  display: inline-block;
  background: #FF3366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.skill-modal__card:hover {
  border-color: var(--gray-200);
}

.skill-modal__card-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.skill-modal__card-contract {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 14px;
}

.skill-modal__copy-btn {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}

.skill-modal__copy-btn:hover {
  background: var(--gray-50);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.skill-modal__copy-btn.is--copied {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}

.skill-modal__note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

.skill-modal__note a {
  color: var(--accent-orange);
  font-weight: 500;
  text-decoration: none;
}

.skill-modal__note a:hover {
  text-decoration: underline;
}

/* --- Engagement Modal Content (inside dock modal) --- */
.engage-modal__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.engage-modal__tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.engage-modal__timeline {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.engage-modal__includes {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.engage-modal__includes-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.engage-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engage-modal__list li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 6px 0 6px 20px;
  position: relative;
}

.engage-modal__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 600;
}

.engage-modal__best-for {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-top: 20px;
}

.engage-modal__best-for strong {
  color: var(--black);
}

.engage-modal__cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-orange);
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.2s;
  box-shadow: 0 8px 32px rgba(247, 147, 30, 0.25);
}

.engage-modal__cta:hover {
  background: var(--accent-orange-hover);
}

/* --- Rotating Text --- */
.rotating-text__heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.rotating-text__highlight {
  display: inline-block;
  color: var(--accent-orange);
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
}

.rotating-text__inner {
  display: inline-block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
}

.rotating-text__word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}

/* --- Variable Font Weight Hover --- */
.font-weight__heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-variation-settings: "wght" 540;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 1;
  margin-bottom: 48px;
}

.font-weight__heading .char {
  display: inline-block;
}

/* --- Creative Block --- */
.creative-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray-400);
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* --- GSAP Slider --- */
[data-gsap-slider-init] {
  --slider-status: on;
  --slider-spv: 3;
  --slider-gap: 1.5em;
}

.gsap-slider {
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  gap: 2em;
}

.gsap-slider__collection {
  width: 100%;
  max-width: 72em;
}

.gsap-slider__list {
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  touch-action: pan-y;
  backface-visibility: hidden;
  display: flex;
}

.gsap-slider__item {
  width: calc(((100% - 1px) - (var(--slider-spv) - 1) * var(--slider-gap)) / var(--slider-spv));
  margin-right: var(--slider-gap);
  flex: none;
}

[data-gsap-slider-item]:last-child {
  margin-right: 0;
}

/* Slider Controls */
.gsap-slider__controls {
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gsap-slider__control {
  color: var(--gray-600);
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50em;
  width: 2.75em;
  height: 2.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.2s, color 0.2s, border-color 0.2s;
}

.gsap-slider__control:hover {
  background: var(--gray-50);
  color: var(--black);
  border-color: var(--gray-400);
}

[data-gsap-slider-status="not-active"] [data-gsap-slider-controls] {
  display: none;
}

[data-gsap-slider-control-status="not-active"] {
  opacity: 0.2;
  pointer-events: none;
}

/* Process Card */
.before__125 {
  padding-top: 125%;
}

.process-card {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  color: var(--white);
  transition: all 0.3s ease;
}

.process-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
  background: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transition: opacity 0.3s ease;
}

.process-card__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-card__desc {
  font-size: 18px;
  color: #c2c8d4;
  line-height: 1.5;
}

/* Slide status customization */
[data-gsap-slider-item-status="not-active"] .process-card {
  background: rgba(2, 51, 119, 0.4);
  border-color: transparent;
}

[data-gsap-slider-item-status="not-active"] .process-card__content {
  opacity: 0.3;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-item {
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/services-bg.png') center 30% / cover no-repeat;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.service-item__content {
  padding: 80px 28px 28px;
  position: relative;
  z-index: 1;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.15;
}

.service-item p {
  font-size: 15px;
  color: #c2c8d4;
  line-height: 1.5;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent-orange);
  background: rgba(247, 147, 30, 0.06);
}

.pricing-label {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent-orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  white-space: nowrap;
}

.price {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.price span {
  font-size: 21px;
  font-weight: 400;
  color: var(--accent-orange);
}

.pricing-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.pricing-desc {
  font-size: 15px;
  color: #c2c8d4;
  line-height: 1.5;
}

/* --- Pricing Modal --- */
.pricing-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pricing-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pricing-modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.pricing-modal-overlay.active .pricing-modal {
  transform: scale(1) translateY(0);
}

.pricing-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-modal__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.pricing-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.pricing-modal__close:hover {
  color: var(--black);
}

.pricing-modal__body {
  padding: 28px;
}

.pricing-modal__body p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Service Modal --- */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.service-modal-overlay.active .service-modal {
  transform: scale(1) translateY(0);
}

.service-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
}

.service-modal__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.service-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.service-modal__close:hover {
  color: var(--black);
}

.service-modal__body {
  padding: 28px;
}

.service-modal__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-modal__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-modal__bullets li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.service-modal__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

.service-modal__form-wrap {
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
}

.service-modal__form-label {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-modal__form-row {
  display: flex;
  gap: 10px;
}

.service-modal__field-group {
  flex: 1;
  position: relative;
}

.service-modal .form-input.service-modal__input {
  width: 100%;
  background: #f5f5f7;
  border: 1px solid #d2d2d7;
  color: #1d1d1f;
  padding: 0.85em 3em 0.85em 1em;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.service-modal .form-input.service-modal__input::placeholder {
  color: #999;
}

.service-modal .form-input.service-modal__input:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.service-modal__field-group .form-field-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  width: auto;
  height: auto;
}

.service-modal__field-group.is--error .form-field-icon.is--error,
.service-modal__field-group.is--success .form-field-icon.is--success {
  opacity: 1;
}

.service-modal__submit-btn {
  background: var(--accent-orange);
  border: none;
  border-radius: 10px;
  padding: 0.85em 1.5em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.service-modal__submit-btn:hover {
  background: var(--accent-orange-hover);
  transform: scale(1.02);
}

.service-modal__submit-btn .form-submit-btn-p {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.service-modal__submit-btn .form-submit {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.service-modal__form-wrap .form-notification {
  margin-top: 16px;
}

/* --- Case Study Modal --- */
.casestudy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.casestudy-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.casestudy-modal {
  background: var(--white);
  border-radius: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}

.casestudy-modal-overlay.active .casestudy-modal {
  transform: scale(1) translateY(0);
}

.casestudy-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 32px 0;
}

.casestudy-modal__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  flex: 1;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.casestudy-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.casestudy-modal__close:hover {
  color: var(--black);
}

.casestudy-modal__body {
  padding: 24px 32px 32px;
}

.casestudy-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.casestudy-modal__image-col {
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f6;
  aspect-ratio: 4 / 3;
}

.casestudy-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.casestudy-modal__text-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.casestudy-modal__description {
  font-size: 15px;
  color: #3a3a3f;
  line-height: 1.7;
}

.casestudy-modal__form-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.casestudy-modal__form-row {
  display: flex;
  gap: 12px;
}

.casestudy-modal__field-group {
  flex: 1;
}

.casestudy-modal__form-wrap .form-input {
  color: var(--black);
  background-color: #f5f5f7;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
}

.casestudy-modal__form-wrap .form-input:focus {
  border-color: var(--accent-orange);
  outline: none;
}

.casestudy-modal__form-wrap .form-input::placeholder {
  color: #999;
}

.casestudy-modal__submit-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.casestudy-modal__form-wrap .form-notification {
  margin-top: 16px;
}

body.modal-open {
  overflow: hidden;
}

/* --- CTA Section --- */
.section-cta {
  background: var(--surface-dark);
  color: var(--white);
  text-align: center;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: clip;
}

.confetti-dot {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  will-change: transform, opacity;
  pointer-events: none;
}

/* ---- Mini Showreel Player ---- */
.mini-showreel-lightbox {
  pointer-events: none;
  justify-content: center;
  align-items: center;
  padding: 3em;
  padding-top: 5em;
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 998;
  overflow: hidden;
}
.mini-showreel-lightbox__safearea {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
.mini-showreel-lightbox__target {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.mini-showreel-lightbox__dark {
  opacity: 0;
  pointer-events: auto;
  cursor: pointer;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
}
.mini-showreel {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: min(100vw - 3em, 13em);
  display: flex;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 50;
}
.mini-showreel__card {
  color: #f4f4f4;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75em;
  width: 100%;
  padding: 0.375em;
  display: flex;
  position: relative;
}
.mini-showreel__media {
  z-index: 1;
  position: relative;
  width: 100%;
}
.mini-showreel__video {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5em;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mini-showreel__cover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mini-showreel__before {
  padding-top: 62.5%;
}
.mini-showreel__info {
  display: none;
}
.mini-showreel__play-svg {
  width: 2.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}
.mini-showreel__click {
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
[data-mini-showreel-status="active"] .mini-showreel__click {
  display: none;
}
[data-mini-showreel-status] .mini-showreel__card {
  transition: margin 1s cubic-bezier(0.87, 0, 0.13, 1);
}
[data-mini-showreel-status="active"] .mini-showreel__card {
  margin-top: 1.375em;
  margin-bottom: 1.375em;
}
[data-mini-showreel-status] .mini-showreel-lightbox__dark {
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
}
[data-mini-showreel-status="active"] .mini-showreel-lightbox__dark {
  opacity: 1;
  visibility: visible;
}

.cta-block {
  max-width: 560px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-block .section-body {
  color: #c2c8d4;
  margin: 0 auto 40px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 100px;
  background: var(--accent-orange);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: scale(1.02);
}

/* --- Contact Form --- */
.form-group {
  gap: 1.5em;
  flex-flow: column;
  width: 100%;
  max-width: 480px;
  margin: 40px auto 0;
  display: flex;
}

.form {
  gap: 1.5em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-field-group {
  flex-flow: row;
  align-items: stretch;
  display: flex;
}

.form-field {
  flex: 1;
  position: relative;
}

.form-label {
  color: #f4f4f4;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 0.375em 0 0 0.375em;
  display: flex;
  align-items: center;
  padding: 0 1em;
  margin-bottom: 0;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  min-width: 160px;
}

.form-required {
  color: var(--accent-orange);
}

.form-input {
  outline-offset: 0px;
  color: var(--white);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0.375em 0.375em 0;
  outline: 0;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding: 0.9em 3.5em 0.9em 1em;
  font-family: var(--font-body);
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.2;
}

.form-input.is--textarea {
  resize: vertical;
  min-height: 9em;
}

.form-field-group:has(.is--textarea) .form-label {
  align-items: flex-start;
  padding-top: 0.9em;
}

.form-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--surface-dark);
  color: var(--white);
}

.form-field-icon {
  opacity: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.3);
  -webkit-user-select: none;
  user-select: none;
  border-radius: 0.375em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  max-height: 3.5em;
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
}

.form-field-icon.is--success {
  color: #0ba954;
}

.form-field-icon.is--error {
  color: #ff4c24;
}

.form-submit {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  inset: 0;
}

.form-submit-btn {
  outline-offset: 0px;
  color: var(--white);
  cursor: pointer;
  background-color: var(--accent-orange);
  border: 1px solid var(--accent-orange);
  border-radius: 0.375rem;
  outline: 0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 1em 1.125em;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
}

.form-submit-btn:hover {
  background: var(--accent-orange-hover);
  transform: scale(1.02);
}

.form-submit-btn-p {
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.2;
}

.form-divider {
  opacity: 0.15;
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.form-notification {
  border-radius: 0.375rem;
  width: 100%;
  padding: 1.125em;
  padding-right: 3.5em;
  font-size: 1em;
  position: relative;
  margin-top: 1em;
}

.form-notification.is--success {
  color: #0ba954;
  border: 1px solid #0ba954;
}

.form-notification.is--error {
  color: #ff4c24;
  border: 1px solid #ff4c24;
}

.form-notification-bg {
  opacity: 0.1;
  pointer-events: none;
  background-color: currentColor;
  border-radius: calc(0.375rem - 2px);
  position: absolute;
  inset: 0;
}

.form-notification-p {
  color: inherit;
  font-size: 1.125em;
  font-weight: 500;
}

/* Field: Error */
[data-validate].is--error input,
[data-validate].is--error textarea,
[data-validate].is--error select {
  border-color: #ff4c24;
}

[data-validate].is--error .form-field-icon.is--error {
  opacity: 1;
}

/* Field: Success */
[data-validate].is--success .form-field-icon.is--success {
  opacity: 1;
}

/* --- Form Card --- */
.form-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  max-width: 560px;
  margin: 40px auto 0;
  padding: 0 36px 32px;
  overflow: hidden;
}

/* --- Multi-Step Form --- */
.form-group--multistep {
  max-width: 100%;
  margin-top: 0;
}

.form-steps {
  margin: 0 -36px 24px;
}

.form-steps__labels {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px 20px 0 0;
  padding: 0;
}

.form-steps__label {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  flex: 1;
  padding: 14px 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  letter-spacing: -0.01em;
}

.form-steps__label:first-child {
  border-radius: 20px 0 0 0;
}

.form-steps__label:last-child {
  border-radius: 0 20px 0 0;
}

.form-steps__label.is--active {
  color: var(--white);
  background: var(--accent-orange);
}

.form-steps__label.is--done {
  color: rgba(255, 255, 255, 0.5);
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1.5em;
  animation: formStepIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-step.is--active {
  display: flex;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stacked labels (above input instead of beside) */
.form-field-group--stacked {
  flex-direction: column;
  gap: 0;
}

.form-label--stacked {
  border: none;
  background: none;
  border-radius: 0;
  padding: 0 0 8px 2px;
  min-width: 0;
  font-size: 0.9375em;
}

/* Larger inputs */
.form-input--lg {
  padding: 1.15em 3.5em 1.15em 1.2em;
  font-size: 1.25em;
  border-radius: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.form-input--lg:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.form-field-group--stacked .form-input--lg {
  border-radius: 0.5em;
}

/* Step navigation */
.form-step__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.form-step__nav--split {
  justify-content: space-between;
}

.form-step__btn {
  font-family: var(--font-heading);
  font-size: 1.15em;
  font-weight: 500;
  border: none;
  border-radius: 0.6em;
  padding: 1em 2.5em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  line-height: 1.2;
}

.form-step__btn--next {
  background: var(--accent-orange);
  color: var(--white);
}

.form-step__btn--next:hover {
  background: var(--accent-orange-hover);
  transform: scale(1.02);
}

.form-step__btn--back {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.form-step__btn--back:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Step 3 summary */
.form-step__summary {
  text-align: center;
  padding: 24px 0;
}

.form-step__summary-text {
  font-family: var(--font-heading);
  font-size: 1.25em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

/* Larger submit button */
.form-submit-btn--lg {
  padding: 1.1em 1.5em;
  border-radius: 0.5em;
}

.form-submit-btn--lg .form-submit-btn-p {
  font-size: 1.25em;
}

/* Date input icon color */
.form-input--lg[type="date"] {
  color-scheme: dark;
}

@media screen and (max-width: 767px) {
  .form-group {
    max-width: 100%;
  }
  .form-group--multistep {
    max-width: 100%;
  }
  .form-card {
    max-width: 100%;
    padding: 0 20px 24px;
    border-radius: 16px;
  }
  .form-steps {
    margin: 0 -20px 24px;
  }
  .form-steps__label:first-child {
    border-radius: 16px 0 0 0;
  }
  .form-steps__label:last-child {
    border-radius: 0 16px 0 0;
  }
}

/* --- Case Study Cards --- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.case-card-wrap {
  perspective: 800px;
}

.case-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  will-change: transform;
  transition: border-color 0.3s;
}

.case-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.case-card__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
}

.case-card__headline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--white);
}

.case-card__cta {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-orange);
  margin-top: 32px;
  transition: color 0.2s;
}

.case-card:hover .case-card__cta {
  color: var(--accent-orange-hover);
}

/* --- Brands Showcase / Image Cycle --- */
.section-brands {
  text-align: center;
  padding-bottom: 0;
}

.brands-slideshow {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.image-cycle-collection {
  width: min(95vw, 60em);
  position: relative;
}

.image-cycle-collection__before {
  padding-top: 66.666%;
}

.image-cycle-collection__list {
  z-index: 0;
  border-radius: 2em;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.image-cycle-collection__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-cycle-collection__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[data-image-cycle-item="active"] {
  transition: opacity 0.4s ease 0s, visibility 0s ease 0s;
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

[data-image-cycle-item="previous"] {
  transition: opacity 0.4s ease 0.4s, visibility 0s ease 0.4s;
  opacity: 0;
  visibility: visible;
  z-index: 2;
}

[data-image-cycle-item="not-active"] {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .image-cycle-collection__list {
    border-radius: 1em;
  }
}

/* --- Journey Draw Path --- */
.section-journey {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

.journey-top {
  position: relative;
  z-index: 2;
}

.journey-draw {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: -40px auto -40px;
}

.journey-svg {
  color: #00BFFF;
  opacity: 0.25;
  width: min(90vw, 960px);
  height: auto;
}

.journey-svg--desktop {
  display: block;
}

.journey-svg--mobile {
  display: none;
}

.journey-bottom {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.journey-box {
  display: inline-block;
  background: var(--accent-orange);
  padding: 16px 40px;
  border-radius: 12px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.journey-box__text {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .section-journey {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .journey-svg--desktop {
    display: none;
  }

  .journey-svg--mobile {
    display: block;
    width: min(90vw, 420px);
  }
}

/* --- Magnetic Cursor --- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0.75em;
  height: 0.75em;
  pointer-events: none;
  z-index: 1001;
}

.cursor-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent-orange);
  opacity: 1;
}

/* When cursor-bg is inside a card's bg container */
[data-magnetic-cursor-bg] {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

[data-magnetic-cursor-bg] .cursor-bg {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.08;
}

/* Ensure pricing card content stays above the bg */
.pricing-card > *:not([data-magnetic-cursor-bg]):not(.pricing-label) {
  position: relative;
  z-index: 1;
}

.pricing-label {
  z-index: 2;
}

/* Hide magnetic cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* --- Footer --- */
.footer {
  background: var(--surface-dark);
  color: var(--gray-600);
  padding: 24px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-600);
}

.footer-legal {
  font-size: 12px;
  color: var(--gray-600);
  transition: color 0.2s;
}

.footer-legal:hover {
  color: var(--gray-400);
}

/* --- Reveal Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Slider Responsive --- */
@media screen and (max-width: 991px) {
  [data-gsap-slider-init] {
    --slider-spv: 2.25;
    --slider-gap: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  [data-gsap-slider-init] {
    --slider-spv: 1.15;
    --slider-gap: 1em;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .two-col {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
  }

  .progress-nav::after {
    display: none;
  }

  .progress-nav__logo {
    position: relative;
    z-index: 1;
  }
  .progress-nav__logo::before {
    content: '';
    position: absolute;
    inset: -14px -24px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 70%);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    z-index: -1;
    pointer-events: none;
  }

  .dock,
  .dock-heading {
    display: none;
  }

  .progress-nav__wrapper,
  .progress-nav__contact-btn {
    display: none;
  }

  .hamburger-toggle {
    display: flex;
  }

  .hamburger-nav {
    display: block;
  }

  .progress-bar-wrap {
    width: 4px;
  }

  .progress-bar-wrap:hover {
    width: 6px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stack-cards {
    max-width: 320px;
    margin: 0 auto;
  }

  .stack-cards__before {
    padding-top: 110%;
  }

  .stack-cards__card--checklist .deliverables-card {
    padding: 20px;
  }

  .stack-cards__card--checklist .deliverables-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .stack-cards__card--checklist .deliverables-card ul li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 1.8em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-card__link {
    padding: 32px 28px;
    min-height: 200px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .casestudy-modal__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .casestudy-modal__image-col {
    aspect-ratio: 16 / 9;
  }

  .casestudy-modal__form-row {
    flex-direction: column;
    gap: 12px;
  }

  .casestudy-modal__body {
    padding: 20px 24px 24px;
  }

  .casestudy-modal__header {
    padding: 24px 24px 0;
  }

  .service-modal {
    width: 95vw;
    margin: 16px;
  }

  .service-modal__body {
    padding: 20px;
  }

  .service-modal__form-row {
    flex-direction: column;
    gap: 12px;
  }

  .service-modal__form-row .service-modal__submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  :root {
    --section-padding: 64px;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .deliverables-card {
    padding: 28px;
    border-radius: 16px;
  }
}

/* --- Rocket Launch Animation --- */
.rocket-clone {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(247, 147, 30, 0.6));
  will-change: transform, left, top;
}

.rocket-clone--trail::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(247, 147, 30, 0.8), rgba(255, 90, 0, 0.4), transparent);
  border-radius: 50%;
  animation: rocketFlame 0.1s ease-in-out infinite alternate;
}

@keyframes rocketFlame {
  0% { height: 20px; opacity: 0.8; }
  100% { height: 28px; opacity: 1; }
}

.dock-item--launching .dock-item__icon {
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Spark particles */
.rocket-spark {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  opacity: 0;
  will-change: transform, opacity;
}

.rocket-spark--active {
  animation: sparkFade 0.5s ease-out forwards;
}

@keyframes sparkFade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* --- Section Scroll Bend --- */
.scroll-7_wrap {
  position: relative;
  overflow: visible;
  margin-top: -6rem;
  margin-bottom: -6rem;
  z-index: 2;
  pointer-events: none;
}

.scroll-7_svg {
  display: block;
  width: 100%;
  height: 12rem;
}

@media (max-width: 768px) {
  .scroll-7_wrap {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .scroll-7_svg {
    height: 5rem;
  }
}