

:root {
  --bg: #0f0f10;
  --fg: #e0e0e0;
  --fg-dim: #888;
  --accent: #ff385c;
  --border: #222;
}


* {
  box-sizing: border-box;
}
* {
  /* cursor: default; */
}
a, button, [role="button"], [onclick], input[type="submit"], label[for], .clickable {
  cursor: pointer;
}
body {
  user-select: none;
}
body {
  margin: 0;
  /* font-family: Arial; */
  background-color: #0f0f10;
  color: white;
  font-size: 17px;
  /* font-family: "Inter", sans-serif; */
        /* font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, sans-serif; */
font-family: "Open Sans", sans-serif;
    /* font-family: IBM Plex Mono, monospace; */

  font-optical-sizing: auto;
  font-style: normal;
}
h1 {
  /* font-family: "Inter", sans-serif; */
  font-size: 4em;     
  line-height: 1em;               
  font-weight: 500;                                                                                                                                                      
}
h2 {
/* font-family: 'Unbounded', sans-serif; */
  font-family: 'IBM Plex Mono', monospace;
  color: rgb(255, 255, 255);
  font-weight: 200;
  font-size: 3em;     
  line-height: 1.1em; 
  margin-top: 0;
  margin-bottom: 10px;                                                                                                                                                                    
}
h3 {
  margin-top: 0;
  /* font-family: 'Unbounded', sans-serif; */
  font-family: 'IBM Plex Mono', monospace;

  font-size: 1.75rem;     
  line-height: 1.15em;       
  font-weight:900;
  text-transform: uppercase;  
}
p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.75em;
  /* color: rgb(174, 174, 174); */
  /* color: rgb(213, 213, 213); */
  font-weight: 200;
}
li strong {
  font-weight: 900;
  color: white;
}

  .text-base {
    font-size: 1rem;     /* 16px */
    line-height: 1.5;    /* 24px */
  }
  .text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.4;
  }
  .text-lg {
    font-size: 1.25rem;  /* 20px */
    line-height: 1.6;
  }
  .text-xl {
    font-size: 1.5rem;  /* 20px */
    line-height: 1.8;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    line-height: 1.4em;
    color: #898989;
  }
  .text-quote {
    font-size: 1.25rem;  /* 20px */
    line-height: 1.6;
  }


ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

li::before {
  content: '';
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1rem;
  height: 1rem;
  /* background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="10" y="4" width="4" height="16"/><rect x="4" y="10" width="16" height="4"/></svg>'); */
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect x="11" y="4" width="2" height="16"/><rect x="4" y="11" width="16" height="2"/></svg>');

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 1.2s ease;
  transform-origin: center;
}

li:hover::before {
  transform: rotate(360deg);
}

/* Before/After compare slider */
.ba-compare {
  position: relative;
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
  touch-action: none;
  background: #000;
  border-radius: 12px;
  user-select: none;
}

.ba-compare .ba-image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
  pointer-events: none;
}

.ba-compare .ba-image:not(.after) {
  margin: 0;
}

.ba-compare .after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: clip-path;
  clip-path: inset(50% 0 0 0);
}

.ba-compare .ba-label {
  position: absolute;
  z-index: 3;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  pointer-events: none;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.ba-label-before {
  bottom: 14px;
  left: 16px;
}

.ba-label-after {
  top: 14px;
  right: 16px;
}

.ba-compare .handle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 22px 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ns-resize;
  pointer-events: auto;
  z-index: 10;
  --ba-thumb-left: 50%;
}

.ba-compare .handle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ba-compare .thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: var(--ba-thumb-left, 50%);
  transform: translate(-50%, -50%);
}

.ba-compare .thumb::before,
.ba-compare .thumb::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.ba-compare .thumb::before {
  border-bottom: 9px solid #111;
}

.ba-compare .thumb::after {
  border-top: 9px solid #111;
}

@media (max-width: 480px) {
  .ba-compare .handle {
    padding: 28px 0;
  }

  .ba-compare .thumb {
    width: 56px;
    height: 56px;
  }

  .ba-compare .ba-label {
    font-size: 0.75rem;
  }
}

.ba-compare .handle:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.ba-compare.is-dragging .handle {
  cursor: grabbing;
}


p a {
  /* font-size: 23px; */
  /* line-height: 1.8em; */
  color: rgb(141, 141, 141);

}
nav a {
  color: rgb(141, 141, 141);

}
a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.2s ease-in-out; /* Smooth transition */

}
a:hover {
  /* color: #ff385c;  */
  text-decoration: none;
}

.site-banner {
  background-color: transparent;
  color: #c0c0c0;
  font-family: 'IBM Plex Mono', monospace;
  /* letter-spacing: 0.05em; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  user-select: text;
}

.site-banner__row {
      max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 0.75rem 100px;
  text-align: left;
}

.site-banner__info {
  display: block;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.65rem;
  font-size: 0.9rem;
  flex: 1 1 auto;
  line-height: 1.4;
}

.site-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  /* padding: 0.2rem 0.75rem; */
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


.site-banner__message {
  max-width: none;
  display: inline;
  color: #6c6c6c;
}

.site-banner__timestamp {
  font-weight: 600;
  color: #a5a5a5;
}

.site-banner__relative {
  font-weight: 500;
  color: #ff385c;
  font-style: normal;
}

.site-banner__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #ff385c;
  background-color: transparent;
  color: #ff385c;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
   /* don’t let flexbox squeeze it */
  white-space: nowrap; /* keep “Read more” + icon on one line */

}

.site-banner__toggle:hover {
  background-color: transparent;
      color: #ff385c;
}

.site-banner__toggle:focus-visible {
  outline: 2px solid #ff385c;
  outline-offset: 2px;
      color: #ff385c;

}

.site-banner__toggle-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.05rem;
}

.site-banner.is-open .site-banner__toggle {
  background-color: transparent;
  /* border-color: #000000; */
    color: #ff385c;

}

.site-banner.is-open .site-banner__toggle-icon {
  transform: rotate(-135deg);
}

.site-banner__details {

  /* background-color: #181818; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.25); */
}

.site-banner__details[hidden] {
  display: none;
}
.site-banner__details p, ul, li{
  color: #ffffff;
  font-size: 1em;
}

.site-banner__details-inner {  
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 100px 10px 100px;
  display: flex;
  flex-direction: column;
  /* gap: 0.75rem; */
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.6;
  /* letter-spacing: 0.03em; */

}
.site-banner__details-lede {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.site-banner__details-list {
  list-style: disc;
  padding-left: 1rem;
  margin: 0;
}

.site-banner__details-list li {
  position: static;
  padding-left: 0;
  margin-bottom: 0.4rem;
}

.site-banner__details-list li::before {
  content: none;
}

.site-banner__details-note a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.site-banner__details-note a:hover {
  text-decoration-thickness: 2px;
}

.opportunity-tiles {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  overflow: hidden;
font-weight: 900;
text-transform: uppercase;
width: 50%;
}

.opportunity-tiles li {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  line-height: 1em;
  font-size: 2.05rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #333;
}

.opportunity-tiles li:last-child {
  border-bottom: none;
}



.caseNumber {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75em;
  color: gray;
  margin-bottom: 15px;
  display: block;
} 



.container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 100px 100px 100px 100px;
}
.container-nav {
  max-width: 1700px;
  margin: 50px auto;
  padding: 0 100px 0 100px;
  z-index: 1000;
  position: relative;
}

.navbar {
  padding: 50px;
}
nav {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: .65em;
  margin-top: 5px;
  text-decoration: none;
  display: flex;
  gap: 0px 5px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
nav a {
  text-decoration: none;
  display: inline-block; /* Change from inline-flexbox to inline-block */
  line-height: 1.3em;
  font-size: 1em;
  transition: color 0.3s ease-in-out; /* Smooth transition */
}

nav a:hover {
  text-decoration: none;
  color: white;
}

.active {
  font-weight: bold;
  color: #ff385c; /* or any highlight color */
  /* text-decoration: underline; */
}

nav .nav_divider {
  opacity: 0.5;
}



.home_columns {
  /* display: flex;
  justify-content: space-between; */
  position: relative;
}

.radarAnimation {
    width: 90%;
    height: 1150px;
  /* margin-left: auto; */
position: relative;
float: left;

z-index: 0;
}
.half-width-container {
  width: 500px;
      height: 1500px;

  /* margin-left: auto; */
  position: absolute; 
  top: 0;
  right: 0;
  z-index: 1;
}


.spy-heading-animation {
  font-family: 'IBM Plex Mono', monospace;
  /* color: #ffffff; */
  /* padding: 1rem; */
  /* font-size: 1.8rem; */
  letter-spacing: 0.1em;
  /* white-space: pre; */
  text-transform: uppercase;
}


.spy-heading-animation::after {
  content: "_";
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}



.spy-para {
  overflow-wrap: break-word;
}

.spy-para span.word {
  display: inline-block;
  white-space: nowrap;
  color: rgb(48, 48, 48); /* scrambled text color */
  /* font-family: monospace, monospace; */
  user-select: none;
  transition: color 0.3s ease;
}

.spy-para span.word.revealed {
  color: rgb(255, 255, 255); /* revealed text color */
  user-select: text;
}

.off-road-span {
  color: rgb(105, 105, 105);
}

blockquote {
  margin: 0;
}
blockquote p {
  font-family: 'IBM Plex Mono', monospace;
  margin-top: 50px;
  color: rgb(121, 121, 121);
  margin-left: 0;
  font-size: 1em;     
  line-height: 1.5em;                                                                                                                                                                     
  font-weight: 500;
}
blockquote footer {
  font-size: 0.75em;
}




/*------ COLUMN CONTENT ------------------------------------------------------------------*/

.two-column-layout {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100%;
  border-top: 1px solid #272727;
  padding-top: 40px;
}


.two-column-layout .left-column {
  width: 30%;
  margin-right: 4%;
}
 
.two-column-layout .right-column {
  width: 60%;
}


/*------ CASE STUDY LAYOPUTS ------------------------------------------------------------------*/

.section {
  overflow: hidden;
}
   .hero-spacer {
      height: 90vh;
      max-height: 500px;
      width: 100%;
      background-color: blue;
    }

    .case-section {
      padding-bottom: 5rem;
      /* border-top: 1px solid #101010; */
      /* or however much spacing you want */
      /* Optionally: padding-top: 2rem; */
      /* Or margin-bottom: 3rem; if you prefer margin */
    }

    /* If you want extra spacing above the first heading */
    .case-section:first-child {
      padding-top: 1rem;
    }

    .fullsize-image {
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }

    .fullsize-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* or 'contain' depending on your goal */
      display: block;
    }

.image-column {
  flex: 1 1 55%;
  /* About 55% width */
  overflow: visible;
}

.image-column img {
  position: sticky;
  top: 1rem;
  width: 100%;
}

    /* Optional: make images responsive */
    .spread-gallery img {
      display: block;
      max-width: 100%;
      margin-bottom: 1rem;
    }

        .text-column::-webkit-scrollbar {
      display: none;
      /* Safari and Chrome */
    }

        .text-column {
      flex: 1 1 40%;
      /* About 40% width, flexible */
      position: sticky;
      top: 1rem;
      /* Distance from top of viewport */
      max-height: calc(100vh - 2rem);
      /* Keep it within viewport height */
      /* your existing styles */
      overflow-y: auto;

      /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE 10+ */
      /* In case text is very long */
      padding-right: 1rem;
    }

     .case-study-layout {
      display: flex;
      gap: 2rem;
      /* space between columns */
      align-items: flex-start;
    }

    /* 
    .spread-gallery img {
      width: 100%;
      max-width: 1000px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    } */

        .spread-gallery {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
     .brochure-gallery {
      margin-top: 2rem;
    }


.dummy-image-spacer {
      /* border: 1px solid #33ff00ff; */
      position: relative;
      height: 50vw;
    }





/* ---------------------- FOUR COLUMN GRID ------------------ */

.capabilities-grid {
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;

margin-top: 40px;
}

.skills-grid {
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem;
margin-top: 40px;
}


/* -------------------- FOOTER  ---------------------------------- */



.spy-footer {
  /* background: #0d0d0d; */
  color: #959595;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  padding: 1rem 0rem;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

#datetime,
#location,
.code-id,
.ip-address {
  opacity: 0.9;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.spy-phrase {
  font-family: 'Courier New', monospace;
  color: #e2e2e2;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
}
#carbon-clarification {
  /* opacity: 0.5;  */
  font-size: 0.7rem; 
  font-family: monospace; 
  color: #ffffff;
   margin-top: 0.1rem;
}

.vh {
  /* height: 70vh; */
}
.testimonial-section {
  width: 80%;
  padding-top: 20px;
}
.testimonial {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.7rem;     
  line-height: 1.3em;       
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
blockquote footer {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}
/* <div class="fancy-box">
  <span class="corner top-left"></span>
  <span class="corner top-right"></span>
  <span class="corner bottom-left"></span>
  <span class="corner bottom-right"></span>

  <div class="content">
    <!-- Your content here -->
  </div>
</div> */

.fancy-box {
  position: relative;
  /* background-color: #111; */
  padding: 2rem;
  color: #fff;
  /* max-width: 800px; */
  margin: 2rem auto;
  width: 100%;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #b8a89e; /* Your pinkish-taupe color */
}

.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}




.experience-dossier {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #444;
  margin-top: 2rem;
}

.category {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  border-bottom: 1px solid #444;
  padding: 2rem 0;
}

.category-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-left h3 {
  /* font-size: 1.25rem; */
  
  color: white;
  margin: 0;
}

.classification {
  font-family: monospace;
  font-size: 0.85rem;
  color: #aaa;
  background: #222;
  padding: 0.25rem 0.5rem;
  border: 1px solid #555;
  align-self: flex-start;
}

.category-desc {
  font-size: 0.95rem;
  color: #bbb;
  margin: 0;
}

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



/* Container: centered, max width, allows visible overflow */
.tall-boxes-wrapper {
  position: relative;
  width: 100%;
  max-width: 1900px;  /* your main container width */
  margin: auto;
  overflow-x: visible; /* allow overflow */
  padding: 0; /* no side padding */
}

.tall-boxes-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding-top: 50px;
  padding-left: 100px;        /* flush left */
  padding-right: 3.5rem;  /* small breathing room right */
padding-bottom: 50px;

  margin-left: 0;
  margin-right: 0;

  box-sizing: border-box;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tall-boxes-row::-webkit-scrollbar {
  display: none;
}


.tall-boxes-row a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  color: white;
  /* border: 1px solid #1d1b1b; */
  border-radius: 0;
  /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5); */
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);

}

.tall-boxes-row a:hover {
  /* transform: scale(1.03); */
    transform: scale(0.97);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);


}

/* Individual tiles */
.tall-box {
  width: 350px;
  min-height: 100%;
  flex-shrink: 0;

  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;

  display: flex;
  flex-direction: column;
  align-items: left;
  box-sizing: border-box;
  border-radius: 0;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(3, 3, 3, 75);
  background-color: #191919;
  color: white;

}



/* Tile category titles */
.box-category {
  font-size: 1.1rem;
  font-weight: 600;
  color: #eee;
  margin: 0 0 0.75rem 0;
  text-align: center;
  user-select: none;
}

/* Placeholder illustration */
.illustration-placeholder {
  width: 100%;
  height: 440px;
  background-color: #0e0e0e;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  font-style: italic;
  font-size: 0.9rem;
  user-select: none;
}

.nav-buttons-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1900px;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* avoid blocking scroll */
  z-index: 20;
  padding: 0 20px;
}

/* Adjust buttons inside container */
.nav-button {
  pointer-events: auto; /* enable click */
}


/* Navigation buttons */
.nav-button {
  position: relative; /* reset absolute */
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border: none;
  color: rgb(77, 77, 77);
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 2rem;
  opacity: 1;
  transition: opacity 0.3s;
  user-select: none;
  z-index: 10;

  transition: transform 0.2s ease;
}
.nav-button:hover {
  /* transform: scale(1.03); */
  border: white 1px solid;
  background-color: #282828;
  color: white;
}


/* Responsive: full width for very wide windows */
@media (min-width: 1900px) {
  .tall-boxes-wrapper {
    max-width: none;
    width: 100vw; /* full viewport width */
  }
}





  .content-split {
  display: grid;
  grid-template-columns: 1fr 3fr; /* 1 part left, 3 parts right => 25% / 75% */
  gap: 4rem; /* spacing between columns */
  align-items: start; /* align top */
}

/* Optional: control left column text styling */
.left-column p {
  margin-bottom: 1rem;
}

/* Responsive tweak (optional) */
@media (max-width: 768px) {
  .content-split {
    grid-template-columns: 1fr; /* stack columns on small screens */
    gap: 2rem;
  }

  .experience-dossier {
    margin-top: 2rem;
  }

  .content-split .left-column,
  .content-split .right-column {
    width: 100%;
  }

  .category {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-left,
  .category-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
}



.text-column {
  max-width: 800px;
  margin: 0 auto;
}
.Xspy-para {
  font-family: IBM Plex Mono, monospace;
}

  .fullsize-image {
    width: 100%;
    overflow: hidden;
    /* position: fixed;
    top: 0;
    left: 0;
    z-index: 0; */
    /* border: 1px solid red; */
    box-sizing: border-box;
  }

  .fullsize-image img {
    width: 100%;
    /* height: 20vh; */
    object-fit: contain;
    object-position: center;
    /* border: 1px solid green; */
  }

  .big-cta-block {
  background-color: transparent;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px;
  transition: background-color 0.3s ease-in-out; /* Smooth transition */
  font-weight: bolder;
    }
.big-cta-block:hover {
  background-color: #ffffff;
  color: #1c1c1c;
  font-weight: bolder;
}

.cta-button {
  background-color: #e2e2e2;
  color: #1c1c1c;
  padding: 15px 40px;
  display:inline-block;
}


/* banner text */
.placeholder-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #181818;          /* highlight background */
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  padding: 0.35em 1em;
  border: 1px solid #aaaaaa;
  box-shadow: 0 0 0 2px #181818; /* fat highlight look */
  white-space: nowrap;

  /* Optional: angled “stamp” look */
  transform: translate(-50%, -50%) rotate(-5deg);
}

/* Tablet layout adjustments */
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2.25em;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container,
  .container-nav {
    padding-left: 60px;
    padding-right: 60px;
  }

  .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .navbar {
    padding: 40px;
  }

  nav {
    gap: 0.5rem;
  }

  .site-banner__row {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-banner__details {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-banner__details-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .home_columns {
    flex-direction: column;
    gap: 2.5rem;
  }

  .half-width-container,
  .radarAnimation {
    width: 100%;
  }

  .two-column-layout {
    flex-direction: column;
    gap: 2.5rem;
  }

  .two-column-layout .left-column,
  .two-column-layout .right-column {
    width: 100%;
  }

  .two-column-layout .left-column {
    margin-right: 0;
  }

  .text-column {
    position: static;
    max-height: none;
    padding-right: 0;
  }

  .case-study-layout {
    flex-direction: column;
  }

  .tall-boxes-row {
    padding-left: 60px;
    padding-right: 60px;
  }

  .tall-box {
    width: 300px;
  }

  .content-split {
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
  }

  .big-cta-block {
    padding: 40px;
  }
}

/* Mobile layout adjustments */
@media (max-width: 600px) {


  .content-split {
     display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container,
  .container-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .navbar {
    padding: 20px 0;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  nav a {
    font-size: 0.95em;
  }

  .home_columns {
    gap: 2rem;
  }

  .two-column-layout {
    padding-top: 30px;
  }

  .site-banner__row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.5rem;
  }

  .site-banner__info {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-banner__message {
    max-width: none;
    display: inline;
  }

  .site-banner__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0.9rem;
  }

  .site-banner__details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .category {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tall-boxes-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tall-box {
    width: 260px;
    padding: 1.5rem 1rem;
  }

  .big-cta-block {
    padding: 30px;
    min-height: 400px;
  }

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

  .testimonial-section {
    width: 100%;
  }

  .footer-container {
    gap: 1.5rem;
  }
}



.placeholder {
  --ph-color: #494949;
  --ph-stroke: 1px;

  position: relative;
  border: var(--ph-stroke) solid var(--ph-color);
  box-sizing: border-box;

  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none' shape-rendering='crispEdges'>\
<line x1='0' y1='0' x2='100' y2='100' stroke='%23494949' stroke-width='1' vector-effect='non-scaling-stroke' stroke-linecap='square'/>\
<line x1='100' y1='0' x2='0' y2='100' stroke='%23494949' stroke-width='1' vector-effect='non-scaling-stroke' stroke-linecap='square'/>\
</svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-origin: border-box;
  background-clip: border-box;
}
.mono-hover {
  filter: grayscale(100%) brightness(0.6);
  transition: filter 0.8s ease-in-out;
  will-change: filter;
  cursor: pointer;
}

.mono-hover:hover,
.mono-hover:focus-visible,
.mono-hover:active,
.mono-wrapper.is-colored .mono-hover {
  filter: grayscale(0%) brightness(1);
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 20px;
}

.full-bleed .fancy-box {
  margin: 0 auto;
}

.fancy-box.full-width {
  max-width: 96vw;
  width: 96vw;
}

.fancy-box.max-1200 {
  max-width: min(1200px, 90vw);
}

.fancy-box.max-1300 {
  max-width: min(1300px, 92vw);
}

@media (max-width: 600px) {
  .fancy-box {
    padding: 1rem;
  }
}
