/* ================================================
   RAWNAQ — CHAPTERS CSS
   Per-chapter visual treatments
   ================================================ */

/* ================================================
   MAIN CONTENT LAYER
   ================================================ */
#main-content {
  position: relative;
  z-index: var(--z-content);
}

/* ================================================
   CHAPTER 00 — HERO
   ================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #020807;
}

/* ── Hero Video Background & Cinematic Overlays ── */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 8, 7, 0.88) 0%,
    rgba(2, 8, 7, 0.70) 25%,
    rgba(2, 8, 7, 0.32) 50%,
    rgba(2, 8, 7, 0.08) 75%,
    rgba(2, 8, 7, 0.02) 100%
  );
  pointer-events: none;
}

.hero__bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28vh;
  background: linear-gradient(
    to top,
    rgba(2, 8, 7, 0.75) 0%,
    rgba(2, 8, 7, 0.25) 40%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Hero Two-Column Grid Container ────────────── */
.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 64px);
  padding-top: calc(var(--nav-height) + clamp(16px, 3.5vh, 36px));
  padding-bottom: clamp(60px, 9vh, 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  height: 100%;
}

/* ── Left Column (Typography & CTA) ───────────── */
.hero__col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}

.hero__col-right {
  /* Negative space allowing video architecture & RAWNAQ logo to show naturally */
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.hero__eyebrow span {
  font-family: var(--f-mono);
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.65);
}

.hero__title {
  font-family: var(--f-body);
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: clamp(18px, 2.5vh, 26px);
}

.hero__title .reveal-line {
  display: block;
  overflow: hidden;
}

.hero__title .reveal-line__inner {
  display: block;
}

.hero__title-accent {
  color: var(--c-emerald);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 28px rgba(0, 184, 107, 0.4);
}

.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 245, 242, 0.72);
  max-width: 490px;
  margin-bottom: clamp(24px, 3.5vh, 36px);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 22px;
  border-radius: 9999px;
  border: 1.2px solid var(--c-emerald);
  background: rgba(2, 10, 8, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 184, 107, 0.22);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.hero-btn span {
  transition: color 0.3s ease;
}

.hero-btn__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 184, 107, 0.15);
  border: 1px solid rgba(0, 184, 107, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn__arrow svg {
  width: 12px;
  height: 12px;
  stroke: var(--c-emerald);
  transition: transform 0.35s ease;
}

.hero-btn:hover {
  border-color: #00FFB2;
  background: rgba(4, 24, 18, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 184, 107, 0.4), 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-btn:hover .hero-btn__arrow {
  background: rgba(0, 184, 107, 0.3);
  border-color: #00FFB2;
  transform: translateX(2px);
}

/* LET'S TALK button styling */
.hero-btn.lets-talk {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 10, 8, 0.5);
  box-shadow: none;
}

.hero-btn.lets-talk .hero-btn__arrow {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-btn.lets-talk .hero-btn__arrow svg {
  stroke: #FFFFFF;
}

.hero-btn.lets-talk:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ── Hero Bottom Bar (Stats & Scroll Indicator) ── */
.hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(24px, 5.5vw, 80px) clamp(24px, 3.5vh, 40px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

/* Left stats group */
.hero__bottom-stats {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  pointer-events: auto;
}

.hero-stats__indicator {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-dot--active {
  background: var(--c-emerald);
  box-shadow: 0 0 8px var(--c-emerald);
}

.hero-stats__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-item__num {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero-stat-item__lbl {
  font-family: var(--f-mono);
  font-size: clamp(8.5px, 0.7vw, 10px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.45);
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

/* Right scroll indicator */
.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.hero-scroll__line {
  width: 1.5px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(0, 184, 107, 0.2));
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.hero-scroll__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-emerald);
  box-shadow: 0 0 6px var(--c-emerald);
  animation: hero-scroll-drop 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes hero-scroll-drop {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

.hero-scroll__text {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.45);
}

/* ================================================
   CHAPTER 02 — OUR SERVICES (Section 2)
   ================================================ */
.services-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #020807;
}

.services-hero__bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.services-hero__bg-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  display: block;
}

.services-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 7, 0.94) 0%,
      rgba(2, 8, 7, 0.82) 28%,
      rgba(2, 8, 7, 0.52) 50%,
      rgba(2, 8, 7, 0.18) 72%,
      rgba(2, 8, 7, 0.04) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 8, 7, 0.65) 0%,
      rgba(2, 8, 7, 0.2) 25%,
      transparent 50%
    );
  pointer-events: none;
}

.services-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  padding-top: calc(var(--nav-height) + clamp(8px, 1.5vh, 20px));
  padding-bottom: clamp(60px, 8vh, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  height: 100%;
}

.services-hero__col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.services-hero__col-right {
  /* Negative space letting cinematic architecture, portal & moon shine */
  pointer-events: none;
}

/* Eyebrow with horizontal emerald dash */
.services-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.services-hero__eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--c-emerald);
  box-shadow: 0 0 8px rgba(0, 184, 107, 0.6);
  display: inline-block;
}

.services-hero__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.65);
}

/* Main Headline */
.services-hero__title {
  font-family: var(--f-body);
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.services-hero__title-line {
  display: block;
}

.services-hero__accent {
  color: var(--c-emerald);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 28px rgba(0, 184, 107, 0.45);
}

/* Supporting Description */
.services-hero__desc {
  font-family: var(--f-body);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 245, 242, 0.72);
  max-width: 520px;
  margin-bottom: clamp(22px, 3vh, 32px);
}

/* 4-Column Minimal Services Grid */
.services-hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-bottom: clamp(22px, 3vh, 32px);
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 184, 107, 0.08);
  border: 1px solid rgba(0, 184, 107, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-emerald);
  margin-bottom: 2px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.service-card__icon svg {
  width: 18px;
  height: 18px;
}

.service-card:hover .service-card__icon {
  border-color: var(--c-emerald);
  background: rgba(0, 184, 107, 0.16);
  transform: translateY(-2px);
}

.service-card__title {
  font-family: var(--f-body);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
}

.service-card__desc {
  font-family: var(--f-body);
  font-size: clamp(12px, 0.85vw, 13px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(243, 245, 242, 0.55);
}

/* Explore CTA Button */
.services-hero__action {
  display: flex;
  align-items: center;
}

.services-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 22px;
  border-radius: 9999px;
  border: 1.2px solid var(--c-emerald);
  background: rgba(2, 10, 8, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0, 184, 107, 0.22);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.services-hero__btn:hover {
  border-color: #00FFB2;
  background: rgba(4, 24, 18, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 184, 107, 0.4), 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Bottom Bar details (02/05 Counter & Diamond Accent) */
.services-hero__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 clamp(24px, 5vw, 80px) clamp(20px, 3vh, 32px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
  z-index: 4;
}

.services-hero__counter-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.services-hero__counter {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(243, 245, 242, 0.5);
}

.services-hero__counter-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.services-hero__deco-diamond {
  display: flex;
  align-items: center;
  opacity: 0.8;
}

/* ================================================
   CHAPTER 03 — THE PROCESS (Horizontal Editorial Rail)
   ================================================ */
.process-rail-section {
  position: relative;
  width: 100%;
  background: #020807;
  color: #FFFFFF;
  overflow: visible;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
  scroll-margin-top: var(--nav-height, 68px);
}

.process-rail__pin-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-rail__sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #020807;
}

.process-rail__bg-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 65%, rgba(0, 184, 107, 0.045), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 35%, rgba(0, 184, 107, 0.02), transparent 60%),
    linear-gradient(180deg, rgba(2, 8, 7, 0.95) 0%, transparent 20%, transparent 80%, rgba(2, 8, 7, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.process-rail__track {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  padding-left: clamp(36px, 5.5vw, 84px);
  padding-right: clamp(48px, 8vw, 120px);
  padding-top: calc(var(--nav-height, 68px) + 12px);
  padding-bottom: clamp(68px, 9vh, 96px);
  width: max-content;
  will-change: transform;
  box-sizing: border-box;
}

/* ── Panel 0: Intro Column ──────────────────────── */
.process-rail__intro-panel {
  width: clamp(340px, 32vw, 440px);
  flex-shrink: 0;
  margin-right: clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: clamp(440px, 62vh, 560px);
}

.process-rail__intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-rail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.process-rail__eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--c-emerald);
  box-shadow: 0 0 10px rgba(0, 184, 107, 0.6);
  display: inline-block;
}

.process-rail__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.7);
}

.process-rail__headline {
  font-family: var(--f-body);
  font-size: clamp(44px, 4.6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: clamp(20px, 2.8vh, 30px);
}

.process-rail__headline-accent {
  color: var(--c-emerald);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 28px rgba(0, 184, 107, 0.35);
}

.process-rail__desc {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.68;
  color: rgba(243, 245, 242, 0.75);
  max-width: 400px;
}

.process-rail__scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(243, 245, 242, 0.5);
}

.process-rail__hint-arrow {
  color: var(--c-emerald);
  font-size: 15px;
  animation: hintArrowMove 1.8s infinite ease-in-out;
}

@keyframes hintArrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ── Process Cards Container ────────────────────── */
.process-rail__cards-wrap {
  display: flex;
  flex-direction: row;
  gap: clamp(32px, 3.5vw, 60px);
  align-items: center;
}

/* ── Individual Large Landscape Process Card ─────── */
.process-card {
  width: clamp(540px, 55vw, 820px);
  height: clamp(450px, 63vh, 580px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #030A07;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0.45;
  transform: scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

.process-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 184, 107, 0.38);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 35px rgba(0, 184, 107, 0.08);
}

/* Header */
.process-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 14px 28px;
  background: rgba(3, 10, 7, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.process-card__num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(243, 245, 242, 0.5);
  transition: color 0.4s ease;
}

.process-card.is-active .process-card__num {
  color: var(--c-emerald);
}

.process-card__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.6);
  transition: color 0.4s ease;
}

.process-card.is-active .process-card__tag {
  color: rgba(243, 245, 242, 0.95);
}

/* Visual Image Area (Atmospheric ~55-60% of card) */
.process-card__visual {
  position: relative;
  flex: 1 1 56%;
  min-height: 200px;
  width: 100%;
  overflow: hidden;
  background: #010403;
}

.process-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.65) contrast(0.9) saturate(0.8);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.process-card.is-active .process-card__img {
  filter: brightness(0.75) contrast(0.95) saturate(0.9);
}

.process-card:hover .process-card__img {
  transform: scale(1.03);
}

.process-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 7, 0.2) 0%,
    rgba(0, 184, 107, 0.03) 40%,
    rgba(3, 10, 7, 0.85) 85%,
    rgba(3, 10, 7, 1) 100%
  );
  pointer-events: none;
}

/* Lower Process Info / Content Area (Editorial typography hero) */
.process-card__body {
  position: relative;
  z-index: 3;
  padding: 24px 32px 28px 32px;
  background: #030A07;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.process-card__meta-mobile {
  display: none;
}

.process-card__stage-lead {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.process-card__stage-big-num {
  font-family: var(--f-display);
  font-size: clamp(68px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(243, 245, 242, 0.15);
  transition: color 0.4s ease, text-shadow 0.4s ease;
  user-select: none;
}

.process-card.is-active .process-card__stage-big-num {
  color: var(--c-emerald);
  text-shadow: 0 0 30px rgba(0, 184, 107, 0.25);
}

.process-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.process-card__title {
  font-family: var(--f-body);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: rgba(243, 245, 242, 0.6);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.process-card.is-active .process-card__title {
  color: #FFFFFF;
}

.process-card__desc {
  font-family: var(--f-body);
  font-size: clamp(14.5px, 1.05vw, 17.5px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 245, 242, 0.45);
  transition: color 0.4s ease;
}

.process-card.is-active .process-card__desc {
  color: rgba(243, 245, 242, 0.82);
}

/* ── Bottom Elegant Progress Indicator Bar ──────── */
.process-rail__progress-bar {
  position: absolute;
  bottom: clamp(18px, 2.6vh, 30px);
  left: clamp(36px, 5.5vw, 84px);
  right: clamp(36px, 5.5vw, 84px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
  pointer-events: none;
}

.process-rail__progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.process-rail__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--c-emerald);
  box-shadow: 0 0 10px rgba(0, 184, 107, 0.8);
  transition: width 0.08s linear;
}

.process-rail__progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.35);
}

.process-rail__step {
  transition: color 0.3s ease, font-weight 0.3s ease, text-shadow 0.3s ease;
}

.process-rail__step.is-active {
  color: var(--c-emerald);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 184, 107, 0.45);
}

.process-rail__mobile-indicator {
  display: none;
}

.process-deco__tags span {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.4);
}

.process-deco__line {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}


/* ================================================
   CHAPTER 04 — SELECTED WORK (Two-Column Exhibition)
   ================================================ */
#chapter-work,
.work-stack-section {
  position: relative;
  width: 100%;
  background: #040806;
  color: #FFFFFF;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
  padding: 0;
  margin: 0;
  overflow: visible;
  scroll-margin-top: var(--nav-height, 68px);
}

#work-pin-wrapper,
.work-pin-wrapper {
  position: relative;
  width: 100%;
  background: #040806;
  padding: 0;
  margin: 0;
}

#work-sticky-viewport,
.work-sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040806;
  z-index: 2;
  padding: 0;
  margin: 0;
}

.work-bg-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 72% 50%, rgba(0, 184, 107, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Two-column desktop layout */
.work-stack__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 34vw) 1fr;
  align-items: center;
  padding: 0 clamp(36px, 4.5vw, 72px);
  gap: clamp(32px, 4vw, 64px);
  box-sizing: border-box;
}

/* ── LEFT ZONE: Introduction & Typography ────────── */
.work-stack__col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
}

.work-stack__intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 440px;
}

.work-stack__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(14px, 2vh, 22px);
}

.work-stack__eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--c-emerald);
  box-shadow: 0 0 10px rgba(0, 184, 107, 0.6);
  display: inline-block;
}

.work-stack__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.7);
}

.work-stack__title {
  font-family: var(--f-body);
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin-bottom: clamp(16px, 2.2vh, 24px);
}

.work-stack__accent {
  color: var(--c-emerald);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 24px rgba(0, 184, 107, 0.4);
}

.work-stack__desc {
  font-family: var(--f-body);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 245, 242, 0.75);
  max-width: 380px;
  margin-bottom: clamp(24px, 3.5vh, 36px);
}

.work-stack__scroll-prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.45);
}

.work-stack__scroll-arrow {
  color: var(--c-emerald);
  font-size: 13px;
  animation: bounceScrollArrow 2s infinite ease-in-out;
}

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

/* ── RIGHT ZONE: Card Stack + Vertical Indicator ─── */
.work-stack__col-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-right: clamp(48px, 5.5vw, 84px);
}

.work-cards-deck {
  position: relative;
  width: 100%;
  max-width: clamp(520px, 52vw, 760px);
  height: clamp(420px, 58vh, 540px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.work-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: #060D0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  will-change: transform, opacity, filter;
  transform-origin: center top;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-card.is-active {
  border-color: rgba(0, 184, 107, 0.4);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.88),
    0 0 32px rgba(0, 184, 107, 0.14),
    0 0 0 1px rgba(0, 184, 107, 0.25);
}

.work-card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: clamp(16px, 2vh, 22px) clamp(18px, 2.2vw, 26px);
  justify-content: space-between;
  background: #060D0A;
  background-color: #060D0A;
  box-sizing: border-box;
}

.work-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(8px, 1.2vh, 12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.work-card__meta-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.work-card__num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-emerald);
  letter-spacing: 0.16em;
}

.work-card__name {
  font-family: var(--f-body);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.work-card__category {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.6);
}

.work-card__visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  margin: clamp(8px, 1.4vh, 14px) 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #020605;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card__img {
  transform: scale(1.02);
}

.work-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(8px, 1.2vh, 12px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.work-card__tag {
  font-family: var(--f-body);
  font-size: clamp(12px, 0.9vw, 13.5px);
  font-weight: 300;
  color: rgba(243, 245, 242, 0.6);
}

.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 184, 107, 0.45);
  background: rgba(0, 184, 107, 0.08);
  color: #FFFFFF;
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.work-card__cta:hover {
  border-color: var(--c-emerald);
  background: rgba(0, 184, 107, 0.22);
  box-shadow: 0 0 16px rgba(0, 184, 107, 0.35);
  transform: translateY(-1px);
}

.work-card__cta-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.work-card__cta:hover .work-card__cta-arrow {
  transform: translateX(3px);
}

/* ── Far-Right Vertical Project Indicator ────────── */
.work-vertical-indicator {
  position: absolute;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
  pointer-events: none;
}

.work-indicator-item {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(243, 245, 242, 0.25);
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.work-indicator-item.is-active {
  color: var(--c-emerald);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 184, 107, 0.6);
  transform: scale(1.15);
}

/* Mobile Progress Indicator (hidden on desktop) */
.work-mobile-progress {
  display: none;
}



/* ================================================
   CHAPTER 05 — THE SYSTEM (Precision Rotating Wheel)
   ================================================ */
#chapter-system,
.system-scroll-section {
  position: relative;
  width: 100%;
  background: #050907;
  color: #FFFFFF;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
  padding: 0;
  margin: 0;
  overflow: visible;
  scroll-margin-top: var(--nav-height, 68px);
}

#system-pin-wrapper,
.system-pin-wrapper {
  position: relative;
  width: 100%;
  background: #050907;
  padding: 0;
  margin: 0;
}

#system-sticky-viewport,
.system-sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050907;
  z-index: 2;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Two-column layout */
.system__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 38vw) 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: clamp(32px, 4vw, 64px);
  box-sizing: border-box;
}

/* ── LEFT COLUMN: Section Header & Active Capability Card ── */
.system__col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
}

.system__intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
}

.system__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}

.system__eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--c-emerald);
  display: inline-block;
}

.system__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.7);
}

.system__title {
  font-family: var(--f-body);
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0 0 clamp(14px, 2vh, 20px) 0;
  display: flex;
  flex-direction: column;
}

.system__title-line {
  display: block;
}

.system__title-dominant {
  color: #FFFFFF;
}

.system__accent {
  color: var(--c-emerald);
  font-style: normal;
  font-weight: 300;
  text-shadow: 0 0 24px rgba(0, 184, 107, 0.35);
}

.system__desc {
  font-family: var(--f-body);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 245, 242, 0.72);
  margin: 0 0 clamp(20px, 2.8vh, 30px) 0;
  max-width: 440px;
}

/* Dynamic Active Service Card */
.system__active-card {
  width: 100%;
  max-width: 440px;
  background: rgba(8, 18, 14, 0.7);
  border: 1px solid rgba(0, 184, 107, 0.22);
  border-radius: 6px;
  padding: clamp(14px, 1.8vh, 18px) clamp(16px, 1.8vw, 20px);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: clamp(14px, 2vh, 20px);
  box-sizing: border-box;
}

.system__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(243, 245, 242, 0.08);
  margin-bottom: 10px;
}

.system__card-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.system__card-num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-emerald);
  letter-spacing: 0.12em;
}

.system__card-sep {
  color: rgba(243, 245, 242, 0.3);
  font-size: 12px;
}

.system__card-name {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.system__card-badge {
  font-family: var(--f-mono);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-emerald);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0, 184, 107, 0.1);
  border: 1px solid rgba(0, 184, 107, 0.25);
  text-transform: uppercase;
}

.system__card-body {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.system__card-indicator {
  width: 2px;
  background: var(--c-emerald);
  border-radius: 1px;
  flex-shrink: 0;
}

.system__card-desc {
  font-family: var(--f-body);
  font-size: clamp(13px, 0.95vw, 14.5px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 245, 242, 0.85);
  margin: 0;
  min-height: 56px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.system__scroll-prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(243, 245, 242, 0.35);
  text-transform: uppercase;
}

.system__scroll-arrow {
  color: var(--c-emerald);
  animation: bounceSystemArrow 2s infinite ease-in-out;
}

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

/* ── RIGHT COLUMN: Rotating Wheel System ── */
.system__col-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.system-wheel-wrapper {
  position: relative;
  width: clamp(440px, 38vw, 540px);
  height: clamp(440px, 38vw, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fixed focus pointer on the left (180° Focus Position) */
.system-wheel__focus-pointer {
  position: absolute;
  left: calc(50% - clamp(155px, 14vw, 205px) - 22px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 9;
  pointer-events: none;
}

.system-wheel__focus-line {
  width: 16px;
  height: 1.5px;
  background: var(--c-emerald);
}

.system-wheel__focus-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-emerald);
  box-shadow: 0 0 6px var(--c-emerald);
}

/* Background Dial SVG */
.system-wheel__dial-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Rotating Wheel Rotor */
.system-wheel__rotor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  will-change: transform;
  transform-origin: center center;
}

/* Individual Wheel Nodes */
.system-wheel__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--node-angle)) translate(clamp(155px, 14vw, 205px)) rotate(calc(-1 * var(--node-angle) - var(--rotor-rot, 0deg)));
  transition: transform 0.1s linear;
}

.system-wheel__node-inner {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px 6px;
}

.system-wheel__node-spoke {
  position: absolute;
  right: 100%;
  top: 50%;
  width: clamp(20px, 3vw, 40px);
  height: 1px;
  background: rgba(243, 245, 242, 0.08);
  pointer-events: none;
  transition: background-color 0.35s ease;
}

.system-wheel__node-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
}

.system-wheel__node-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(243, 245, 242, 0.3);
  transition: all 0.35s ease;
}

.system-wheel__node-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.system-wheel__node-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(243, 245, 242, 0.4);
  letter-spacing: 0.1em;
  transition: color 0.35s ease;
}

.system-wheel__node-label {
  font-family: var(--f-body);
  font-size: clamp(12px, 0.95vw, 13.5px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.55);
  transition: all 0.35s ease;
}

/* Active Node Highlights */
.system-wheel__node.is-active .system-wheel__node-inner {
  transform: translate(-50%, -50%) scale(1.15);
}

.system-wheel__node.is-active .system-wheel__node-dot {
  background: var(--c-emerald);
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px rgba(0, 184, 107, 0.7);
}

.system-wheel__node.is-active .system-wheel__node-num {
  color: var(--c-emerald);
  font-weight: 600;
}

.system-wheel__node.is-active .system-wheel__node-label {
  color: #FFFFFF;
  font-weight: 600;
}

.system-wheel__node.is-active .system-wheel__node-spoke {
  background: rgba(0, 184, 107, 0.3);
}

/* Static Center Core: RAWNAQ Brand */
.system-wheel__center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(110px, 10vw, 136px);
  height: clamp(110px, 10vw, 136px);
  border-radius: 50%;
  background: radial-gradient(circle, #081611 0%, #040907 100%);
  border: 1px solid rgba(0, 184, 107, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.system-wheel__core-disc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.system-wheel__core-brand {
  width: 68px;
  height: auto;
  opacity: 0.95;
}

.system-wheel__core-tag {
  font-family: var(--f-mono);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-emerald);
  opacity: 0.85;
}

/* Far-Right Vertical Progress Tracker */
.system-vertical-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 15;
  pointer-events: none;
}

.system-indicator-item {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(243, 245, 242, 0.25);
  transition: color 0.3s ease, transform 0.3s ease;
}

.system-indicator-item.is-active {
  color: var(--c-emerald);
  font-weight: 600;
  transform: scale(1.15);
}

/* ================================================
   CHAPTER 06 — CLIENTS (Editorial Testimonials & Floating Orbital Logos)
   ================================================ */
#chapter-difference,
.clients-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #030705;
  color: #FFFFFF;
  border-top: 1px solid rgba(89, 99, 96, 0.12);
  padding: clamp(60px, 8vh, 100px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ambient Background Curves, Grid Lines & Orbital Glow */
.clients-bg-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Technical Grid Lines */
.clients-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(89, 99, 96, 0.08) 20%, rgba(89, 99, 96, 0.08) 80%, transparent 100%);
  pointer-events: none;
}
.clients-grid-line--1 { left: 24%; }
.clients-grid-line--2 { left: 54%; }
.clients-grid-line--3 { left: 78%; }

.clients-bg-curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  pointer-events: none;
}

.clients-node-glow {
  opacity: 0.5;
}
.clients-node--1 { opacity: 0.6; }
.clients-node--2 { opacity: 0.4; }
.clients-node--3 { opacity: 0.5; }

.clients-radial-glow {
  position: absolute;
  top: 50%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: clamp(450px, 55vw, 750px);
  height: clamp(450px, 55vw, 750px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 107, 0.035) 0%, transparent 65%);
  pointer-events: none;
}

/* Two-column desktop grid */
.clients__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 36vw) 1fr;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: clamp(32px, 5vw, 80px);
  box-sizing: border-box;
}

/* ── LEFT ZONE: Editorial Intro, Label, Headline & Supporting Text ── */
.clients__col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  box-sizing: border-box;
  z-index: 4;
}

.clients__intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.clients__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(16px, 2.5vh, 24px);
}

.clients__eyebrow-line {
  width: 26px;
  height: 2px;
  border-radius: 9999px;
  background: #00B86B;
  display: inline-block;
}

.clients__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.7);
}

.clients__title {
  font-family: var(--f-body);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: clamp(16px, 2.5vh, 26px);
}

.clients__title-line {
  display: block;
}

.clients__title-accent {
  color: #00FFA8;
  font-weight: 300;
}

.clients__desc {
  font-family: var(--f-body);
  font-size: clamp(14px, 1vw, 15.5px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(243, 245, 242, 0.65);
  max-width: 380px;
}

/* ── CENTER / RIGHT ZONE: Testimonial Carousel + Floating Orbital Logos ── */
.clients__col-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 540px;
  box-sizing: border-box;
}

.clients-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Floating Orbital Company Logo Bubbles (Static Ambient Elements Only) ── */
.clients-floating-logos {
  position: absolute;
  inset: -30px -40px;
  pointer-events: none;
  z-index: 2;
}

.floating-logo-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(8, 22, 17, 0.72);
  border: 1px solid rgba(89, 99, 96, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0.5;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  will-change: transform;
}

.floating-logo__img {
  max-width: 74%;
  max-height: 74%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.8);
}

.floating-logo__img[src*="casamea"],
.floating-logo-bubble img[src*="casamea"] {
  max-width: 90%;
  max-height: 90%;
  transform: scale(1.22);
}

.floating-logo__txt {
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.75);
  text-align: center;
  line-height: 1.1;
}

/* Specific Bubble Sizes & Positions from Reference */
.float-bubble--tl {
  width: 84px;
  height: 84px;
  top: 15px;
  left: 25px;
}

.float-bubble--tr {
  width: 76px;
  height: 76px;
  top: 95px;
  right: -25px;
}

.float-bubble--mr {
  width: 86px;
  height: 86px;
  top: 48%;
  right: 15px;
  transform: translateY(-50%);
}

.float-bubble--bl {
  width: 80px;
  height: 80px;
  bottom: 40px;
  left: 15px;
}

.float-bubble--br {
  width: 82px;
  height: 82px;
  bottom: 25px;
  right: 40px;
}

.float-bubble--far-left {
  width: 66px;
  height: 66px;
  bottom: 95px;
  left: -80px;
}

.float-bubble--far-right {
  width: 70px;
  height: 70px;
  top: 54%;
  right: -90px;
}

.float-blur {
  filter: blur(3px);
  opacity: 0.28;
}

/* Ambient Floating Speeds (Subtle, Independent Drift) */
.float-speed--1 { animation: floatOrbitA 14s infinite ease-in-out; }
.float-speed--2 { animation: floatOrbitB 18s infinite ease-in-out; }
.float-speed--3 { animation: floatOrbitC 22s infinite ease-in-out; }
.float-speed--4 { animation: floatOrbitD 16s infinite ease-in-out; }

@keyframes floatOrbitA {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(4px, -6px); }
  66% { transform: translate(-5px, 4px); }
}
@keyframes floatOrbitB {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-6px, 5px); }
  66% { transform: translate(5px, -4px); }
}
@keyframes floatOrbitC {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(5px, 5px); }
  66% { transform: translate(-4px, -6px); }
}
@keyframes floatOrbitD {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-5px, -5px); }
  66% { transform: translate(6px, 4px); }
}

/* ── Central Editorial Testimonial Zone ── */
.clients-center-stage {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  user-select: none;
  box-sizing: border-box;
  padding: 10px 0;
}

/* Top Active Logo Disk — Refined Editorial Container with Subtle Emerald Accent */
.clients-hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.clients-hero-logo-disk {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(12, 28, 22, 0.9);
  border: 1px solid rgba(0, 184, 107, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.clients-hero-logo-disk:hover {
  transform: scale(1.03);
  border-color: rgba(0, 184, 107, 0.55);
}

.clients-hero-logo-img {
  max-width: 84%;
  max-height: 84%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.95);
}

.clients-hero-logo-img[src*="casamea"],
.clients-hero-logo-disk img[src*="casamea"] {
  max-width: 94%;
  max-height: 94%;
  transform: scale(1.2);
}

.clients-hero-logo-text {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.15;
}

/* Emerald Quotation Mark Icon — Crisp & Sharp */
.clients-quote-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  margin-bottom: 2px;
}

.clients-quote-mark svg path {
  fill: #00B86B;
}

/* Testimonial Quote Text — Crisp High-Contrast Editorial Typography */
.clients-card__quote-wrapper {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.clients-card__quote-text {
  font-family: 'Cinzel', 'Playfair Display', Georgia, var(--f-body), serif;
  font-size: clamp(16px, 1.25vw, 19.5px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(243, 245, 242, 0.95);
  font-style: normal;
  margin: 0;
  max-width: 460px;
  text-shadow: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Subtle Emerald Divider Line */
.clients-card__divider {
  width: 28px;
  height: 1.5px;
  background: rgba(0, 184, 107, 0.35);
  margin: 4px auto;
}

/* Company Identity & Meta — Crisp & Sharp */
.clients-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.clients-card__company {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.2vw, 18.5px);
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clients-card__category {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 245, 242, 0.5);
  text-shadow: none;
  transition: opacity 0.3s ease;
}

/* ── Orbit Arrow Controls (Understated Editorial Buttons) ── */
.clients-orbit-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 22, 17, 0.75);
  border: 1px solid rgba(89, 99, 96, 0.25);
  color: rgba(243, 245, 242, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.clients-orbit-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.clients-arrow--prev {
  left: -24px;
}

.clients-arrow--next {
  right: -24px;
}

.clients-orbit-arrow:hover {
  border-color: rgba(0, 184, 107, 0.5);
  color: #00FFA8;
  background: rgba(12, 28, 22, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%) scale(1.06);
}

.clients-arrow--prev:hover svg {
  transform: translateX(-2px);
}

.clients-arrow--next:hover svg {
  transform: translateX(2px);
}

/* ── Minimal Pill Pagination ── */
.clients-pill-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.clients-pag-pill {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(243, 245, 242, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.clients-pag-pill:hover {
  background: rgba(243, 245, 242, 0.5);
}

.clients-pag-pill.is-active {
  width: 22px;
  height: 4px;
  border-radius: 9999px;
  background: #00B86B;
  box-shadow: none;
}

/* ================================================
   CHAPTER 07 — FINAL CTA ("LET'S TALK")
   Architectural Green-Grey Editorial Conclusion
   ================================================ */
#chapter-cta,
.cta-talk-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #C9D0C7;
  color: #0A110D;
  border-top: 1px solid rgba(10, 17, 13, 0.08);
  padding: clamp(90px, 14vh, 160px) clamp(24px, 5vw, 80px) clamp(60px, 9vh, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 2;
}

/* Subtle Architectural Background Watermark & Linework */
.cta-talk__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.cta-talk__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display), sans-serif;
  font-size: clamp(140px, 22vw, 360px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #0A110D;
  opacity: 0.04;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.cta-talk__line {
  position: absolute;
  background: rgba(10, 17, 13, 0.045);
  pointer-events: none;
}

.cta-talk__line--h {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.cta-talk__line--v {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

/* Main Centered Content Container */
.cta-talk__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  margin-bottom: clamp(16px, 3vh, 32px);
}

/* Eyebrow */
.cta-talk__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3.2vh, 32px);
}

.cta-talk__eyebrow-line {
  width: 22px;
  height: 2px;
  border-radius: 9999px;
  background: #00B86B;
  display: inline-block;
}

.cta-talk__eyebrow-text {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #344039;
}

/* Dominant Headline */
.cta-talk__headline {
  font-family: var(--f-body);
  font-size: clamp(48px, 6.2vw, 98px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #0A110D;
  margin: 0 0 clamp(18px, 2.5vh, 28px) 0;
  max-width: 15ch;
}

/* Supporting Subtext */
.cta-talk__sub {
  font-family: var(--f-body);
  font-size: clamp(15.5px, 1.2vw, 19.5px);
  font-weight: 300;
  line-height: 1.55;
  color: #4E5852;
  max-width: 520px;
  margin: 0 0 clamp(32px, 4.5vh, 48px) 0;
}

/* Action Button */
.cta-talk__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-talk__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.2vh, 20px) clamp(38px, 3.5vw, 54px);
  border-radius: 9999px;
  background: #07100C;
  color: #F2F4EF;
  border: 1.5px solid #07100C;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(10, 17, 13, 0.16);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cta-talk__btn-text {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-talk__btn-arrow {
  font-size: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cta-talk__btn:hover {
  background: #040806;
  border-color: #00B86B;
  color: #FFFFFF;
  box-shadow: 0 16px 44px rgba(10, 17, 13, 0.22), 0 0 24px rgba(0, 184, 107, 0.22);
  transform: translateY(-2px);
}

.cta-talk__btn:hover .cta-talk__btn-arrow {
  transform: translateX(5px);
  color: #00FFA8;
}

/* Bottom Closing Signature Row */
.cta-talk__bottom-row {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #344039;
  text-transform: uppercase;
  z-index: 3;
}

.cta-talk__sig-brand {
  font-weight: 600;
  color: #344039;
}

.cta-talk__sig-tagline {
  opacity: 0.75;
  color: #4E5852;
}

.cta-talk__sig-link {
  color: #344039;
  text-decoration: none;
  transition: color 0.25s ease;
  font-weight: 600;
}

.cta-talk__sig-link:hover {
  color: #0A110D;
}

/* ================================================
   FOOTER TAKEOVER (Editorial Conclusion)
   ================================================ */
#footer-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--c-dark-2);
}

#footer {
  position: relative;
  background: var(--c-dark-2);
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-height, 68px) + clamp(40px, 6vh, 70px)) clamp(24px, 5vw, 80px) clamp(24px, 3.5vh, 40px);
  border-top: 1px solid rgba(89, 99, 96, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}

/* Background Watermark — Subdued & Shifted Away from Form */
.footer__watermark {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: clamp(260px, 28vw, 460px);
  height: auto;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: grayscale(100%) brightness(0.6);
}

.footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Left Column: Brand & Contact ── */
.footer__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 480px;
}

.footer__brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--space-xs);
}

.footer__logo-mark {
  height: clamp(34px, 4vw, 42px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 184, 107, 0.25));
}

.footer__logo-type {
  height: clamp(22px, 2.6vw, 28px);
  width: auto;
  display: block;
}

.footer__statement {
  font-family: var(--f-display);
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-light);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__statement em {
  font-style: italic;
  color: var(--c-emerald);
}

.footer__subtext {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--c-muted);
  line-height: var(--lh-body);
  font-weight: 300;
  max-width: 380px;
}

.footer__divider {
  width: 40px;
  height: 2px;
  background: var(--c-emerald);
  margin: var(--space-xs) 0 var(--space-sm);
  border-radius: 2px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--c-light);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  transition: color 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

a.footer__contact-item:hover {
  color: var(--c-emerald);
  transform: translateX(4px);
}

.footer__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243, 245, 242, 0.12);
  background: rgba(243, 245, 242, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-emerald);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

a.footer__contact-item:hover .footer__contact-icon {
  border-color: var(--c-emerald);
  background: rgba(0, 184, 107, 0.1);
}

.footer__contact-icon svg {
  width: 16px;
  height: 16px;
}

/* ── Right Column: The Spotlight Form ── */
.footer__right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.spotlight-form-container {
  position: relative;
  background: rgba(14, 18, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.spotlight-form-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 255, 168, 0.12) 0%, rgba(0, 184, 107, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
}

/* Spotlight Header */
.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: var(--ls-widest);
  color: var(--c-emerald);
  text-transform: uppercase;
  font-weight: 500;
}

.spotlight-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00FFA8;
  box-shadow: 0 0 8px #00FFA8;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Step Dots */
.spotlight-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-dot {
  width: 24px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--ease-out-expo);
}

.spotlight-dot.is-active {
  background: var(--c-emerald);
  width: 34px;
  box-shadow: 0 0 10px rgba(0, 255, 168, 0.5);
}

.spotlight-dot.is-completed {
  background: rgba(0, 255, 168, 0.4);
}

.spotlight-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.3);
}

/* Progress Track */
.spotlight-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-bottom: clamp(24px, 3vw, 32px);
  overflow: hidden;
  position: relative;
}

.spotlight-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00B86B, #00FFA8);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out-expo);
  box-shadow: 0 0 12px rgba(0, 255, 168, 0.6);
}

/* Form Stage & Steps */
.spotlight-stage {
  position: relative;
  min-height: 165px;
}

.spotlight-step {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

.spotlight-step.is-active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
  animation: stepEntrance 0.38s var(--ease-out-expo) forwards;
}

@keyframes stepEntrance {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.spotlight-step.shake-anim {
  animation: stepShake 0.4s ease-in-out;
}

@keyframes stepShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.spotlight-step__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.spotlight-step__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-emerald);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.spotlight-step__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spotlight-step__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  color: var(--c-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  cursor: default;
}

.spotlight-step__hint {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  color: var(--c-muted);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Inputs */
.spotlight-input-wrap {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 6px;
  transition: border-color 0.3s ease;
}

.spotlight-input-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--c-emerald);
  box-shadow: 0 0 10px rgba(0, 255, 168, 0.5);
  transition: right 0.45s var(--ease-out-expo);
}

.spotlight-input-wrap:focus-within .spotlight-input-line {
  right: 0;
}

.spotlight-input-wrap.has-error {
  border-bottom-color: rgba(255, 77, 77, 0.5);
}

.spotlight-input-wrap.has-error .spotlight-input-line {
  right: 0;
  background: #FF4D4D;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
}

.spotlight-input,
.spotlight-textarea {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: var(--c-light);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  line-height: 1.5;
  padding: 4px 0;
}

.spotlight-input::placeholder,
.spotlight-textarea::placeholder {
  color: rgba(243, 245, 242, 0.22);
}

.spotlight-textarea {
  min-height: 64px;
  resize: vertical;
}

.spotlight-error {
  font-family: var(--f-mono);
  font-size: 11px;
  color: #FF6B6B;
  letter-spacing: var(--ls-wide);
  margin-top: 8px;
  min-height: 16px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.spotlight-error.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Action Controls */
.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(20px, 2.8vw, 32px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.spotlight-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--ease-out-expo);
}

.spotlight-btn--prev {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-muted);
  padding: 10px 18px;
}

.spotlight-btn--prev:hover:not(:disabled) {
  border-color: var(--c-light);
  color: var(--c-light);
  background: rgba(255, 255, 255, 0.05);
}

.spotlight-btn--prev:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.spotlight-keys-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted-2);
  letter-spacing: var(--ls-wide);
}

.spotlight-key-badge {
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-light-3);
  font-size: 10px;
}

.spotlight-btn--next,
.spotlight-btn--submit {
  background: var(--c-emerald);
  border: 1px solid rgba(0, 255, 178, 0.35);
  color: #070A08;
  padding: 12px 26px;
  box-shadow: 0 4px 16px rgba(0, 184, 107, 0.25);
}

.spotlight-btn--next:hover,
.spotlight-btn--submit:hover {
  background: #00FFA8;
  border-color: #00FFA8;
  color: #070A08;
  box-shadow: 0 6px 22px rgba(0, 255, 168, 0.4);
  transform: translateY(-2px);
}

.spotlight-btn-icon {
  transition: transform 0.3s ease;
}

.spotlight-btn--next:hover .spotlight-btn-icon,
.spotlight-btn--submit:hover .spotlight-btn-icon {
  transform: translateX(3px);
}

/* Loading Spinner */
.spotlight-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(7, 10, 8, 0.3);
  border-top-color: #070A08;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spotlight-btn--submit.is-loading .spotlight-spinner {
  display: inline-block;
}

.spotlight-btn--submit.is-loading .spotlight-btn-icon {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Result Screens */
.spotlight-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.spotlight-result.fade-in {
  animation: resultFadeIn 0.5s var(--ease-out-expo) forwards;
}

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

.spotlight-result__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 184, 107, 0.12);
  border: 1px solid rgba(0, 255, 168, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(0, 184, 107, 0.2);
}

.spotlight-result__icon--error {
  background: rgba(255, 77, 77, 0.12);
  border-color: rgba(255, 77, 77, 0.35);
  box-shadow: 0 0 24px rgba(255, 77, 77, 0.2);
}

.spotlight-result__badge {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: var(--ls-widest);
  color: var(--c-emerald);
  text-transform: uppercase;
}

.spotlight-result__badge--error {
  color: #FF6B6B;
}

.spotlight-result__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--c-light);
  font-weight: 300;
  line-height: 1.15;
}

.spotlight-highlight {
  color: var(--c-emerald);
  font-style: italic;
}

.spotlight-result__text {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--c-muted);
  line-height: var(--lh-body);
  max-width: 480px;
  font-weight: 300;
}

.spotlight-link {
  color: var(--c-emerald);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.spotlight-reset-btn,
.spotlight-retry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--c-light);
  margin-top: 8px;
}

.spotlight-reset-btn:hover,
.spotlight-retry-btn:hover {
  background: var(--c-emerald);
  color: #070A08;
  border-color: var(--c-emerald);
  box-shadow: 0 4px 18px rgba(0, 184, 107, 0.3);
  transform: translateY(-2px);
}

/* ── Bottom Bar: Copyright, Nav, Socials ── */
.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(89, 99, 96, 0.15);
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wide);
  color: var(--c-muted-2);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}

.footer__nav-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: var(--c-light);
}

.footer__dot {
  color: var(--c-emerald);
  font-size: 10px;
  opacity: 0.8;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__social-link:hover {
  border-color: var(--c-emerald);
  color: var(--c-emerald);
  background: rgba(0, 184, 107, 0.12);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__left {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

@media (max-width: 600px) {
  .footer__form-grid {
    grid-template-columns: 1fr;
  }

  .form__field--half {
    grid-column: span 1;
  }

  .form__field--full {
    grid-column: span 1;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
