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

body,
html {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  cursor: none;
  /* Hide default cursor */
}

a,
button,
.video-thumbnail,
.play-btn {
  cursor: none !important;
}

/* Scroll Wrapper */
.scroll-container {
  height: 450vh;
  /* scroll distance for the animations */
  background-color: #fff;
}

.sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

/* Background */
.bg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  will-change: width, height, border-radius;
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Header */
.arch-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo-bars {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 35px;
}

.logo-bars span {
  display: block;
  width: 7px;
  background-color: #fff;
  border-radius: 1px;
}

.logo-bars span:nth-child(1) {
  height: 25px;
}

.logo-bars span:nth-child(2) {
  height: 35px;
}

.logo-bars span:nth-child(3) {
  height: 25px;
}

.menu-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.menu-btn:hover {
  background: #fff;
  color: #000;
}

/* Dark Mode Overrides for Header */
.arch-header.dark-mode .logo-bars span {
  background-color: #000;
}

.arch-header.dark-mode .menu-btn {
  color: #000;
  border-color: rgba(0, 0, 0, 0.4);
}

.arch-header.dark-mode .menu-btn:hover {
  background: #000;
  color: #fff;
}

/* Typography */
.arch-main {
  position: absolute;
  /* changed to absolute so it sits inside sticky view */
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  will-change: opacity, transform;
}

.hero-text-container {
  width: 100%;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 14vw;
  font-weight: 400;
  /* Thin look */
  color: #fff;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0px;
  /* subtle shadow to separate from background */
  text-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.line-1 {
  text-align: left;
  margin-left: 2%;
}

.line-2 {
  text-align: right;
  margin-right: 2%;
}



/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 60px;
  z-index: 10;
}

.circle-outline {
  width: 24px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.circle-dot {
  width: 3px;
  height: 6px;
  background-color: #fff;
  border-radius: 3px;
  animation: scrollAnim 1.5s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Phase 2: We Design Text */
.we-design-container {
  position: absolute;
  top: 5%;
  /* Higher up, above the image */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  /* behind the image */
  font-family: 'Oswald', sans-serif;
  font-size: 16vw;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.anim-word-wrapper {
  overflow: hidden;
  /* masks the word coming up */
}

.anim-word {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(120%);
  opacity: 0;
}

/* Phase 3: We Developed Text */
.we-developed-container {
  position: absolute;
  bottom: 5%;
  /* Below the image */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  /* behind the image */
  font-family: 'Oswald', sans-serif;
  font-size: 16vw;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.anim-word-dev {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(120%);
  opacity: 0;
}

/* Entrance Animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

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

.reveal-delay {
  transition-delay: 0.3s;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Combined Section */
.combined-scroll-container {
  height: 500vh;
  /* space for both sections + transition */
  background-color: #fff;
  position: relative;
  z-index: 20;
}

.combined-sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#000 1.5px, transparent 1.5px);
  background-size: 150px 150px;
  background-position: center;
  opacity: 0.6;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.icomat-text-container {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 4vw;
  font-weight: 600;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0vw;
  letter-spacing: -0.1vw;
}

.icomat-line {
  display: flex;
  justify-content: center;
  gap: 1vw;
}

.anim-word-icomat {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(120%);
  opacity: 0;
}

.grey-text {
  color: #666;
}

.extra-content {
  font-size: 2vw;
  font-weight: 400;
  margin-top: 3vw;
  opacity: 0.8;
}

/* Split Text Section Content */
.split-section-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Hidden initially */
  pointer-events: none;
  /* Ignore pointer until active */
}

.split-image-wrapper {
  position: absolute;
  top: 25vh;
  left: 32.5vw;
  width: 35vw;
  height: 50vh;
  z-index: 2;
  overflow: hidden;
}

.split-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.split-img-1 {
  opacity: 1;
  /* default visible */
}

.split-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10vw;
  font-family: 'Inter', sans-serif;
  font-size: 7vw;
  font-weight: 600;
  letter-spacing: -0.2vw;
  pointer-events: none;
}

.base-text {
  color: #000;
  z-index: 1;
  /* Behind image text but over background */
}

.overlay-text {
  color: #fff;
  z-index: 3;
  /* Over image */
  clip-path: inset(25vh 32.5vw 25vh 32.5vw);
}

.split-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.1;
  transform: translateY(0);
  /* animated via JS */
  will-change: transform;
}

.split-right-col {
  line-height: 1.1;
}

.green-letter {
  color: #a4f522;
  /* Lime green like in the image */
}

.split-word {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.word-1 {
  opacity: 1;
  transform: translateY(0);
}

.expand-scroll-container {
  height: 800vh;
  position: relative;
  z-index: 30;
  background-color: #fff;
}

.expand-sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  /* Starts white to blend with previous section */
}

.expand-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(30vh);
  width: 50vw;
  height: 40vh;
  border-radius: 24px;
  overflow: hidden;
  will-change: width, height, border-radius, transform;
  z-index: 2;
}

.expand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.expand-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 5;
  pointer-events: none;
}

.quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 3.5vw;
  font-weight: 500;
  color: #fff;
  width: 65%;
  line-height: 1.15;
  letter-spacing: -0.1vw;
  opacity: 0;
  transform: translateY(40px);
  margin-bottom: 4vh;
}

.quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 5vh;
}

.author-title {
  color: #ccc;
  font-size: 1vw;
}

.video-thumbnail {
  position: absolute;
  bottom: 10vh;
  right: 8vw;
  width: 25vw;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
  pointer-events: auto;
  /* Clickable */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-thumbnail:hover .play-btn {
  background: #fff;
  border-color: #fff;
}

.video-thumbnail:hover .play-btn::after {
  border-color: transparent transparent transparent #000;
}

/* Hero Card Styles */
.hero-image-overlay {
  position: absolute;
  bottom: 5vh;
  left: 3vw;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  z-index: 5;
  opacity: 0;
  /* Faded out initially */
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.1vw;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-text {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1.6vw;
  font-weight: 500;
  line-height: 1.3;
}

.hero-massive-title {
  position: absolute;
  top: 5vh;
  /* Moved up from 15vh to create better intersection */
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 13vw;
  font-weight: 700;
  letter-spacing: -0.4vw;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.base-title {
  color: #111 !important;
  /* Dark text on white background */
  z-index: 1;
  /* Behind the image wrapper */
}

.overlay-title {
  color: #fff !important;
  /* White text over image */
  z-index: 10;
  /* Over the image, inside the wrapper */
}

.hero-button-container {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
}

.hero-btn {
  background: #f0f0f0;
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1vw;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #e0e0e0;
}

/* Hero Cards Track */
.cards-track {
  position: absolute;
  top: 55vh;
  left: 100vw;
  /* Starts offscreen to the right */
  transform: translateY(-50%);
  display: flex;
  gap: 15vw;
  /* Wide gap between massive cards */
  z-index: 4;
  will-change: transform, left;
}

.hero-track-card-container {
  position: relative;
  width: 80vw;
  height: 65vh;
  flex-shrink: 0;
}

.hero-track-card {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 2;
  /* Sits above base-title */
}

.hero-track-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.static-title {
  /* Overrides for track titles */
  opacity: 1 !important;
  pointer-events: auto !important;
  top: -15vh !important;
  /* adjust so it overlaps the top edge perfectly */
}

.static-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Phase 6: Accordion Testimonials */
.testimonials-scroll-container {
  height: 400vh;
  /* 100vh per card for scrolling */
  background: radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), #050505 60%);
  background-color: #050505;
}

.testimonials-sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.testimonials-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.testimonials-layout {
  width: 100%;
  height: 100%;
  padding: 0 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.testimonials-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonials-heading {
  font-size: 3.8vw;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.1vw;
  margin: 0;
  color: #e5e7eb;
}

.testimonials-right {
  flex: 0 0 450px;
  /* Reduced fixed width */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8vh;
  /* Very tight spacing */
}

.testimonials-label {
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 1.5vh;
}

.test-card {
  background-color: #121212;
  /* Very dark grey */
  border-radius: 12px;
  padding: 2.2vh 1.8vw;
  display: block;
  overflow: hidden;
  height: 6vh;
  /* very short collapsed height */
  opacity: 0.9;
  border: none;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.test-card-logo {
  font-size: 1vw;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05vw;
  margin: 0;
  margin-bottom: 4vh;
  /* push content down */
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.5s ease;
}

.test-card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.test-quote {
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1a1a1a;
  margin-bottom: 2vh;
}

.test-author {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6vw;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05vw;
  text-transform: uppercase;
  background: #e6e6e6;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
}

/* Custom Cursor */
.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #111;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.custom-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(17, 17, 17, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  will-change: transform, width, height;
}

/* Hover state for links/interactive */
.custom-cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: rgba(17, 17, 17, 0.8);
  background-color: rgba(17, 17, 17, 0.05);
}

/* Interactive Background */
.bg-ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -10;
  background: radial-gradient(circle 600px at 50% 50%, rgba(0, 0, 0, 0.02), transparent 80%);
  will-change: background;
}

.bg-grid-parallax {
  position: fixed;
  top: -10vw;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  pointer-events: none;
  z-index: -15;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  will-change: transform;
}

/* Phase 7 Section: Features Bento Grid */
.features-scroll-container {
  height: 250vh;
  /* space for scrolling animation */
  background-color: #fafafa;
  position: relative;
  z-index: 10;
}

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

.features-section {
  width: 100%;
  padding: 0 10vw;
  box-sizing: border-box;
  text-align: center;
}

.features-title {
  font-size: 4.5vw;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.15vw;
  color: #111;
  margin-top: 0;
  margin-bottom: 8vh;
  /* Initial state for animation */
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
  max-width: 1400px;
  margin: 0 auto;
  /* Initial state for animation */
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
}

.feature-card {
  border-radius: 16px;
  padding: 2.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  aspect-ratio: 1.6;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.dark-card {
  background-color: #1a1a1a;
  color: #fff;
}

.dark-card .feature-card-desc {
  color: #aaa;
}

.light-card {
  background-color: #f4f4f5;
  color: #111;
}

.light-card .feature-card-desc {
  color: #666;
  transition: color 0.4s ease;
}

.light-card .feature-icon {
  transition: color 0.4s ease;
}

/* Hover state to convert grey to black */
.light-card:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.light-card:hover .feature-card-desc {
  color: #aaa;
}

.light-card:hover .feature-icon {
  color: #fff;
}

.feature-icon {
  margin-bottom: 2vh;
  color: #111;
  display: flex;
  align-items: center;
}

.feature-card-title {
  font-size: 1.2vw;
  font-weight: 700;
  margin: 0 0 0.5vh 0;
  line-height: 1.2;
}

.feature-card-desc {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.feature-link {
  font-size: 1vw;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.3s ease;
}

.feature-link:hover {
  opacity: 0.8;
}

/* Phase 9: Asymmetric Testimonial CTA */
.arch-cta {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-color: #fff;
  color: #111;
  overflow: hidden;
}

.arch-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#d5d5d5 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* 50/50 Split Container */
.arch-cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 80vh;
}

/* Left Column: Image & Testimonial */
.cta-column-left {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-cta-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.arch-cta-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1) brightness(1);
}

/* The overlay image is permanently inverted, but hidden via clip-path */
.overlay-image {
  filter: grayscale(100%) invert(1) contrast(1.2);
  clip-path: circle(0px at 50% 50%);
  /* Remove transition here so the mask strictly follows cursor via JS */
  pointer-events: none; /* Let mouse events pass through to wrapper */
}

/* Floating Testimonial */
.floating-testimonial {
  position: relative;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 4vh 3vw;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 30vw;
  margin-top: 10vh; /* Push down slightly */
  border: 1px solid rgba(0,0,0,0.05);
}

.quote-icon {
  color: #ccc;
  margin-bottom: 2vh;
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 1.4vw;
  font-style: italic;
  line-height: 1.5;
  color: #111;
  margin-bottom: 3vh;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1vw;
  color: #000;
}

.author-title {
  font-size: 0.9vw;
  color: #666;
}

/* Right Column: CTA Content */
.cta-column-right {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

.arch-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 40vw;
}

.arch-cta-headline {
  font-size: 5vw;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.15vw;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #111;
  margin-bottom: 3vh;
}

.arch-cta-subtext {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  margin-bottom: 5vh;
  max-width: 30vw;
}

.arch-cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2vh 4vw;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  font-family: monospace;
  font-weight: 700;
  font-size: 1vw;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.arch-cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Phase 8: Premium Footer */
.site-footer {
  background-color: #050505;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 8vh 4vw 4vh 4vw;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: repeating-linear-gradient(-15deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 20px);
  /* Use a radial gradient mask so the lines fade out at the edges */
  mask-image: radial-gradient(circle at 40% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: radial-gradient(circle at 40% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
}

.site-footer>* {
  position: relative;
  z-index: 10;
}

/* Layout */
.footer-layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  flex-grow: 1;
}

/* Left Column */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
}

.footer-logo-mark {
  padding-top: 1vh;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6vh;
}

.mt-auto {
  margin-top: auto;
}

.footer-slogan {
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.1;
  color: #e5e5e5;
  letter-spacing: -0.05vw;
}

.footer-copyright {
  font-size: 0.8vw;
  color: #666;
  font-family: monospace;
}

/* Right Column */
.footer-right {
  display: flex;
  flex-direction: column;
  width: 70%;
  align-items: flex-start;
}

.footer-brand-title-container {
  width: 100%;
  height: 25vh;
  margin-bottom: 8vh;
  position: relative;
}

#footer-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.footer-nav-grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 0.8vw;
  letter-spacing: 0.05vw;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
  color: #aaa;
}

.nav-column a {
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: monospace;
}

.nav-column a:hover {
  color: #fff;
}

.nav-sub-links {
  display: flex;
  flex-direction: column;
  margin-top: 0.5vh;
  gap: 0.5vh;
}

.nav-sub-links a {
  color: #666;
  font-weight: 400;
}

.nav-sub-links a:hover {
  color: #aaa;
}

/* Legal & Social Spacers */
.mt-spacer {
  margin-top: 20vh;
}

.mt-spacer-small {
  margin-top: 1.5vh;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

.legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.8vw;
  font-family: monospace;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1.5vw;
  font-size: 1vw;
}

.social-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #fff;
}

.footer-credit {
  font-size: 0.7vw;
  color: #aaa;
  font-family: monospace;
  font-weight: 600;
  letter-spacing: 0.1vw;
}