/* ========================================
   Phantom Technologies - Global Styles
   ======================================== */

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

:root {
  --black: #000;
  --white: #fff;
  --grey-94: #efefef;
  --grey-67: #aaa;
  --grey-18: #2e2e2e;
  --grey-13: #212121;
  --grey-10: #17171c;
  --grey-9: #1e2124;
  --dune: #322d2a;
  --grey-text: #8b8d9d;
  --grey-link: #556;
  --border-subtle: rgba(63, 107, 177, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--grey-13);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

body.page-loaded {
  opacity: 1;
}

body.page-exit {
  opacity: 0;
}


/* ========================================
   Scroll Reveal (GSAP)
   ======================================== */

.scroll-reveal {
  position: relative;
}

.scroll-reveal .word {
  display: inline-block;
  will-change: opacity, filter, transform;
}

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

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

/* ========================================
   Header
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 36px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1728px;
  margin: 0 auto;
}

.header-logo img {
  height: 46px;
  width: auto;
  transition: filter 0.3s ease;
  will-change: filter;
}

.header.scrolled .header-logo img {
  filter: invert(1);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(23, 23, 23, 0.5);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  padding: 12px 32px;
  border-radius: 16px;
}

/* Mobile-only menu toggle (desktop unchanged) */
.nav-toggle {
  display: none;
}

.nav-toggle-icon {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: block;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

@media (max-width: 820px) {
  .no-scroll {
    overflow: hidden;
  }

  .header {
    padding: 18px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    cursor: pointer;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 16px;
  }

  .header--menu-open .header-nav {
    display: flex;
  }

  .header-nav .nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    opacity: 1;
  }

  .header-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .header--menu-open .nav-toggle-icon {
    background: transparent;
  }

  .header--menu-open .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .header--menu-open .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

.nav-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.14px;
  line-height: 18.2px;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link--bold {
  font-weight: 700;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 100px;
}

.hero-headline h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.2px;
  margin-bottom: 32px;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 16px;
  color: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14px;
  transition: background 0.2s;
}

.btn-discover:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 22px;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.35px;
  line-height: 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.sidebar-tab:hover {
  opacity: 1;
}

.tab-arrow {
  opacity: 0;
  transition: opacity 0.2s;
}

.sidebar-tab:hover .tab-arrow {
  opacity: 1;
}

/* ========================================
   Mission Section
   ======================================== */

.mission {
  padding: 100px 80px 120px;
  max-width: 1728px;
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.mission-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.mission-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mission-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  padding-top: 8px;
}

.eyebrow-dot {
  width: 18px;
  height: 18px;
  background: var(--dune);
  flex-shrink: 0;
}

.mission-eyebrow h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--dune);
  text-transform: uppercase;
  letter-spacing: 0.27px;
  line-height: 1;
}

.mission-icons {
  display: flex;
  gap: 40px;
  align-items: center;
}

.mission-icon-svg {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.mission-content {
  max-width: 794px;
}

.mission-content p {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--dune);
  margin-bottom: 24px;
}

.mission-content p:last-of-type {
  margin-bottom: 54px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 26px;
  border: 1px solid #bfb8b5;
  border-radius: 16px;
  color: var(--dune);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.14px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--dune);
  color: var(--white);
  border-color: var(--dune);
}

/* ========================================
   Carousel Section
   ======================================== */

.carousel-section {
  background: var(--grey-94);
  padding: 40px 0 80px;
  overflow: hidden;
  position: relative;
}

.carousel-header {
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 80px;
  margin-bottom: 40px;
}

.carousel-tabs {
  display: flex;
  gap: 10px;
}

.carousel-tab {
  padding: 6px 8px;
  background: var(--white);
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey-67);
  cursor: pointer;
  transition: color 0.2s;
}

.carousel-tab.active {
  color: var(--black);
}

.carousel-tab:hover {
  color: var(--black);
}

.carousel-track {
  display: flex;
  gap: 90px;
  padding: 0 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-next {
  position: absolute;
  top: 44px;
  right: 80px;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.carousel-next:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.28);
}

.carousel-next:active {
  transform: translateY(0);
}

.carousel-next:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.6);
  outline-offset: 3px;
}

.carousel-next-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.carousel-progress {
  max-width: 1728px;
  margin: 0 auto;
  padding: 22px 80px 0;
  display: flex;
  justify-content: center;
}

.carousel-progress-track {
  position: relative;
  width: 368.527px;
  height: 3.428px;
  flex-shrink: 0;
  border-radius: 8569.544px;
  background: rgba(23, 23, 28, 0.2);
}

.carousel-progress-active {
  position: absolute;
  left: 0;
  top: 0;
  width: 94.274px;
  height: 3.428px;
  flex-shrink: 0;
  border-radius: 8569.544px;
  background: linear-gradient(
    90deg,
    var(--color-red-67, #FF7759) 0%,
    var(--color-blue-61, #7670C5) 50%,
    var(--color-blue-60, #4C6EE6) 100%
  );
  transform: translateX(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-card {
  position: relative;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

.carousel-card--large {
  width: 1100px;
  height: 692px;
  scroll-snap-align: start;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.card-label-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 3px;
  padding: 20px;
  max-width: 520px;
}

.card-earmark {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 29px;
  color: var(--white);
  letter-spacing: -0.34px;
  line-height: 1.5;
}

.card-desc {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 340px;
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Three Layers Section
   ======================================== */

.layers-section {
  padding: 120px 80px 100px;
  max-width: 1728px;
  margin: 0 auto;
  text-align: center;
}

.layers-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.19;
  color: var(--grey-13);
  letter-spacing: -0.48px;
  margin-bottom: 80px;
}

.layers-grid {
  display: flex;
  justify-content: center;
  gap: 130px;
  margin-bottom: 60px;
}

.layer-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.layer-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.layer-icon svg,
.layer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layer-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 31.2px;
  color: var(--grey-13);
  margin-bottom: 8px;
}

.layer-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 22.4px;
  color: var(--grey-13);
}

.layers-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: var(--grey-13);
  line-height: 22.4px;
  transition: opacity 0.2s;
}

.layers-link:hover {
  opacity: 0.7;
}

.arrow-icon {
  font-size: 14px;
}

.layers-learn-icon {
  width: 14px;
  height: 14px;
  display: block;
}

/* ========================================
   Models Section
   ======================================== */

.models-section {
  padding: 40px 40px 80px;
  max-width: 1728px;
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.models-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 60.64px;
  color: var(--grey-13);
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}

.models-inner {
  display: flex;
  gap: 73px;
  align-items: center;
}

.models-image {
  width: 680px;
  height: 680px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.models-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}


.models-image.models-image--contain img {
  object-fit: contain;
  object-position: center;
}

.models-accordion {
  flex: 1;
  max-width: 555px;
}

.accordion-item {
  border-top: 1px solid var(--black);
  padding-top: 9px;
}

.accordion-item:first-child {
  border-top: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-header h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 31.2px;
  color: var(--grey-10);
}

.accordion-item:not(.accordion-item--active) .accordion-header h5 {
  font-weight: 400;
  color: var(--grey-13);
}

.accordion-body {
  display: none;
  padding-bottom: 36px;
}

.accordion-item--active .accordion-body {
  display: block;
}

.accordion-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-10);
  margin-bottom: 20px;
}

.accordion-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-body li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--grey-10);
  padding-left: 24px;
  position: relative;
}

.bullet {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 10px;
  color: var(--grey-10);
}

/* ========================================
   Quote Section
   ======================================== */

.quote-section {
  position: relative;
  min-height: 1007px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grey-18);
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 788px;
  padding: 0 0 0 156px;
}

@media (max-width: 900px) {
  .quote-content {
    padding: 0 18px 96px 18px;
  }
}

.quote-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 47.488px;
  line-height: 61.056px; /* 128.571% */
  color: var(--white);
  letter-spacing: -0.509px;
  margin-bottom: 17px;
}

.quote-content > p {
  font-family: 'Inter', sans-serif;
  font-size: 17.7px;
  line-height: 1.51;
  color: var(--white);
  margin-bottom: 42px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 9999px;
  background: var(--white);
  color: var(--grey-10);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 25.2px;
  transition: all 0.2s;
}

.btn-pill:hover {
  background: var(--grey-94);
}

/* ========================================
   Industries Section
   ======================================== */

.industries-section {
  padding: 100px 0 80px;
  overflow: hidden;
}

.industries-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  color: var(--grey-13);
  text-align: center;
  letter-spacing: -0.48px;
  margin-bottom: 60px;
  padding: 0 80px;
}

.industries-carousel {
  position: relative;
  padding: 0 0 0;
}

.industries-scroll {
  display: flex;
  gap: 16px;
  padding: 0 30px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}

.industries-scroll:active {
  cursor: grabbing;
}

.industries-scroll--dragging,
.industries-scroll--dragging * {
  user-select: none;
}

.industries-scroll--dragging img {
  -webkit-user-drag: none;
  user-drag: none;
}

.industries-scroll::-webkit-scrollbar {
  display: none;
}

.industries-scroll-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.industries-scroll-indicator--left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}

.industries-scroll-indicator--right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

.industries-carousel[data-can-scroll-left="true"] .industries-scroll-indicator--left {
  opacity: 1;
}

.industries-carousel[data-can-scroll-right="true"] .industries-scroll-indicator--right {
  opacity: 1;
}

.industries-progress {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px; /* space between the two bars */
  padding: 40px 30px 0;
}

.industries-progress-seg {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.industries-progress-seg:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.55);
  outline-offset: 6px;
  border-radius: 10px;
}

.industries-progress-line {
  display: block;
  height: 3.428px;
  flex-shrink: 0;
  border-radius: 8569.544px;
}

.industries-progress-line--active {
  width: 94.274px;
  background: linear-gradient(
    90deg,
    var(--color-red-67, #FF7759) 0%,
    var(--color-blue-61, #7670C5) 50%,
    var(--color-blue-60, #4C6EE6) 100%
  );
}

.industries-progress-line--track {
  width: 368.527px;
  opacity: var(--item-spacing-20, 0.2);
  background: var(--color-grey-10, #17171C);
}

.industry-card {
  position: relative;
  width: 310px;
  height: 310px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
}

.industry-card.parallax {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.industry-card.parallax img {
  transform: translateZ(20px);
}

.industry-card.parallax .industry-label {
  transform: translateZ(50px);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(to top, rgba(33, 33, 33, 0.4) 0%, rgba(33, 33, 33, 0.2) 50%, transparent 100%);
  border-radius: 0 0 22px 22px;
}

.industry-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  color: var(--white);
}

.industry-label--dark {
  color: var(--black);
}

.industry-label--financial {
  color: var(--runwayml-com-white, var(--color-white-solid, #FFF));
  font-family: var(--font-family-Font-1, Inter), sans-serif;
  font-size: 17.039px;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: 23.014px; /* 135.065% */
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  position: relative;
  padding: 120px 0 0;
  background: #0a0a0a;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 145px 120px;
  text-align: center;
}

.cta-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 54px;
  color: var(--white);
  letter-spacing: -1.08px;
  margin-bottom: 60px;
}

.cta-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.cta-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 16px 60px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 64px;
  width: 50%;
  max-width: 700px;
  transition: transform 0.2s;
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-card--light {
  /* Figma frame specs (light CTA card only) */
  display: flex;
  width: 707px;
  height: 188px;
  padding: 12px 16px 112px 16px;
  align-items: flex-start;
  gap: 82px;
  border-radius: 12px;
  background: #DBDBDB;

  /* Figma typography */
  color: var(--www-palantir-com-shark, var(--color-grey-13, #1E2124));
  font-family: var(--font-family-Font-1, "Segoe UI"), sans-serif;
  font-size: var(--font-size-48, 48px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--line-height-64, 64px); /* 133.333% */
  letter-spacing: var(--letter-spacing--2, -2px);
}

.cta-card--dark {
  /* Figma frame specs (dark CTA card only) */
  display: flex;
  width: 707px;
  height: 188px;
  padding: 12px 16px 112px 16px;
  align-items: flex-start;
  gap: var(--item-spacing-356_98, 356.98px);
  border-radius: 12px;
  background: #202426;
  color: var(--white);
}

.cta-arrow {
  font-size: 48px;
  line-height: 64px;
}

/* Keep CTA label text on one line (Figma) */
.cta-card span:not(.cta-arrow) {
  white-space: nowrap;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  padding: 0 145px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  height: 46px;
  width: auto;
  /* Use the actual dark logo asset; avoid turning it into a solid block. */
  filter: none;
}

.footer-columns {
  display: flex;
  gap: 100px;
  flex: 1;
  padding-top: 4px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 2.25px;
  margin-bottom: 16px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--grey-link);
  line-height: 25.5px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--grey-13);
}

/* Figma ~400:10382 — copyright left, legal links right */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(63, 107, 177, 0.12);
}

.footer-copy,
.footer-bottom > span:first-child {
  font-family: "Inter", sans-serif;
  font-size: 15.016px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.524px;
  color: #8b8d9d;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-family: "Inter", sans-serif;
  font-size: 15.016px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.524px;
  color: #8b8d9d;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #333;
}

/* ========================================
   About Page - Hero
   ======================================== */

.about-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 100px;
}

.about-hero-headline h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1.46px;
  margin-bottom: 32px;
}

.nav-link--active {
  opacity: 1;
}

/* ========================================
   About Page - Intro / About Us
   ======================================== */

.about-intro {
  padding: 80px 80px 100px;
  max-width: 1728px;
  margin: 0 auto;
}

.about-intro-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.about-intro-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.about-intro-image {
  width: 732px;
  height: 323px;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.about-intro-eyebrow h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 64px;
  color: var(--dune);
  text-transform: uppercase;
  letter-spacing: 0.27px;
  line-height: 1;
}

.about-intro-content {
  max-width: 791px;
}

.about-intro-content p {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--dune);
  margin-bottom: 24px;
}

.about-intro-content p:last-of-type {
  margin-bottom: 54px;
}

.btn-outline--rounded {
  border-radius: 53px;
}

/* ========================================
   About Page - Our Mission
   ======================================== */

.about-mission {
  padding: 60px 80px 50px;
  max-width: 1728px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 110px;
}

.about-mission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
}

.about-mission-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 89px;
  color: var(--dune);
  text-transform: uppercase;
  letter-spacing: 0.38px;
  line-height: 1;
}

.about-mission-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--grey-10);
  letter-spacing: -0.27px;
}

/* ========================================
   About Page - Invisible Infrastructure Card
   ======================================== */

.about-infra-card {
  padding: 40px 60px 60px;
  max-width: 1728px;
  margin: 0 auto;
}

.about-infra-card-inner {
  display: flex;
  gap: 0;
  position: relative;
  width: 100%;
}

.about-infra-text {
  background: var(--white);
  border-radius: 22px;
  padding: 30px 30px 40px;
  flex: 1;
  max-width: 888px;
  z-index: 2;
}

.about-infra-text-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 37px;
  line-height: 1.46;
  color: var(--grey-10);
  letter-spacing: -1.47px;
  margin-bottom: 28px;
}

.about-infra-text-body p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.39;
  color: var(--grey-10);
  margin-bottom: 20px;
}

.about-infra-quote {
  font-family: 'Oxanium', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.39;
  color: var(--grey-10);
  margin-top: 40px;
  border: none;
  padding: 0;
}

.about-infra-image {
  width: 888px;
  height: 474px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  margin-left: -120px;
}

.about-infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   About Page - Our Mission Carousel
   ======================================== */

.about-mission-carousel {
  padding: 10px 60px 40px;
  max-width: 1728px;
  margin: 0 auto;
}

.about-mission-carousel-inner {
  position: relative;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
}

.mission-slide {
  display: none;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.mission-slide--active {
  display: flex;
}

.mission-slide-text {
  flex: 0 0 865.611px;
  background: var(--white);
  border: 0.86px solid rgba(0, 0, 0, 0.35);
  border-right: none;
  border-radius: 18.855px 0 0 18.855px;
  padding: 20.57px;
  padding-right: 170px; /* keep text away from diagonal cut */
  height: 461.088px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.mission-slide-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -1.44px;
  line-height: 146%;
  color: #17171c;
  margin-bottom: 18px;
}

.mission-slide-text p {
  font-family: 'Inter', sans-serif;
  color: #17171C;
  font-size: 19.283px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.74px; /* 138.667% */
  width: 686px;
  max-width: 100%;
  margin-bottom: 26.74px;
}

.mission-slide-text p strong {
  font-weight: 600;
  color: #17171C;
}

.mission-slide-text blockquote {
  margin-top: 18px;
  font-family: 'Oxanium', sans-serif;
  font-size: 34.282px;
  font-style: normal;
  font-weight: 400;
  line-height: 47.537px;
  color: #17171c;
  border: none;
  padding: 0;
}

.mission-slide-image {
  flex: 0 0 867.325px;
  border-radius: 0 18.855px 18.855px 0;
  overflow: hidden;
  border: 0.86px solid rgba(0, 0, 0, 0.35);
  background: #17171c;
  height: 462.802px;
  margin-left: -120px; /* creates the diagonal overlap like Figma */
  clip-path: polygon(17.5% 0, 100% 0, 100% 100%, 0 100%);
}

.mission-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  position: relative;
}

.mission-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  grid-column: 2;
}

.mission-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.mission-dot--active {
  background: rgba(0, 0, 0, 0.6);
}

.mission-arrows {
  position: static;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.mission-arrow {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mission-arrow img {
  width: 14px;
  height: 14px;
  display: block;
}

/* using explicit left/right icons now */

@media (max-width: 1200px) {
  .about-mission-carousel {
    padding: 10px 40px 30px;
  }

  .mission-slide-text,
  .mission-slide-image {
    flex-basis: auto;
  }

  /* How we work (Figma stack) */
  .about-how-stack--figma {
    height: auto;
    padding-bottom: 20px;
  }

  .howw-step--01 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .howw-step-media {
    width: 100%;
    height: 220px;
  }

  .howw-step-head {
    width: 100%;
    justify-content: space-between;
  }

  .howw-step-desc {
    max-width: 500.269px;
  }

  .howw-swap-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 900px;
    height: 820px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .howw-swap-viewport {
    max-width: 900px;
    height: 760px;
    margin: 0 auto;
  }

  .howw-swap-surface {
    flex-direction: column;
    padding: 28px 22px 26px;
    border-radius: 26px;
  }

  .howw-swap-media {
    width: calc(100% - 0px);
    height: 220px;
    margin-top: 18px;
    border-radius: 22px;
    align-self: stretch;
  }

  .howw-swap-num {
    font-size: 54px;
    margin-bottom: 16px;
  }

  .howw-swap-title {
    font-size: 28px;
  }

  .howw-swap-desc {
    font-size: 18px;
    line-height: 28px;
    max-width: none;
  }

  .howw-card {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 18px;
    height: auto;
  }

  .howw-card--04,
  .howw-card--03,
  .howw-card--02 {
    border-radius: 26px;
  }

  .howw-card-media--02,
  .howw-card-media--03,
  .howw-card-media--04 {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 44px);
    height: 220px;
    margin: 18px auto 0;
    border-radius: 22px;
  }

  .howw-card-copy--02,
  .howw-card-copy--03,
  .howw-card-copy--04 {
    padding: 28px 22px 0 22px !important;
  }

  .howw-card-num--02,
  .howw-card-num--03,
  .howw-card-num--04 {
    position: static;
    margin: 18px 0 0 22px;
  }
}

@media (max-width: 768px) {
  .about-mission-carousel {
    padding: 10px 24px 30px;
  }

  .mission-slide--active {
    flex-direction: column;
  }

  .mission-slide-text {
    max-width: none;
    border-right: 0.86px solid rgba(0, 0, 0, 0.35);
    border-radius: 18.855px 18.855px 0 0;
    clip-path: none;
    height: auto;
    overflow: visible;
    padding: 18px 18px 16px;
    padding-right: 18px;
  }

  .mission-slide-text h3 {
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
  }

  .mission-slide-text p {
    font-size: 15px;
    line-height: 1.6;
    width: auto;
    margin-bottom: 16px;
  }

  .mission-slide-text blockquote {
    font-size: 22px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .mission-slide-image {
    border-radius: 0 0 18.855px 18.855px;
    clip-path: none;
    margin-left: 0;
    height: 240px;
  }

  .mission-arrows {
    right: 0;
  }
}

/* ========================================
   About Page - Typing Box
   ======================================== */

.about-typing-section {
  padding: 40px 60px 60px;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.about-typing-box {
  width: 1606px;
  max-width: 100%;
  height: 759px;
  background: var(--grey-94);
  border: 0.4px solid var(--black);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.about-typing-content {
  width: 100%;
  max-width: 1262px;
  padding: 40px 0;
  display: inline;
}

.about-typing-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 61px;
  line-height: 1.34;
  color: #56534e;
  letter-spacing: -2.43px;
  display: inline;
  min-height: 1em;
}

.about-typing-cursor {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 61px;
  line-height: 1.34;
  color: #56534e;
  letter-spacing: -2.43px;
  transition: opacity 0.1s;
  display: inline;
}

/* ========================================
   About Page - Infrastructure Insights
   ======================================== */

.about-insights {
  padding: 80px 80px 100px;
  max-width: 1728px;
  margin: 0 auto;
}

.about-insights-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 43px;
}

.about-insights-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 39.776px;
  color: #322d2a;
  text-transform: uppercase;
  letter-spacing: 0.1685px;
  line-height: 21.911px;
}

.about-insights-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22.274px;
  color: #bfb8b5;
  text-transform: uppercase;
  letter-spacing: 0.0944px;
  line-height: 12.27px;
}

.about-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 33px;
  row-gap: 18.714px;
  width: 100%;
}

.insight-card {
  border-radius: 17.154px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #f0eee9;
  height: 334px;
  transition: transform 0.25s;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 80px;
  background: #fff; /* page background */
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

.insight-card-surface {
  padding: 12.476px;
  padding-bottom: 6.23px;
  display: flex;
  flex-direction: column;
  gap: 14.815px;
}

.insight-card-image {
  height: 130.997px;
  border-radius: 3.119px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-category {
  font-family: Arial, sans-serif;
  font-size: 10.916px;
  color: #212121;
  text-transform: uppercase;
  letter-spacing: 0.2183px;
  line-height: 15.283px;
}

.insight-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17.7px;
  color: #212121;
  line-height: 24.328px;
}

.insight-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12.44px;
  padding: 0 12.476px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.insight-card-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13.49px;
  color: #212121;
  line-height: 19.65px;
}

.insight-card-arrow {
  width: 18.714px;
  height: 19.494px;
  display: block;
}


/* ========================================
   About Page - How We Work
   ======================================== */

.about-how-we-work {
  background: var(--black);
  padding: 100px 80px 80px;
  position: relative;
}

.about-how-header {
  max-width: 1728px;
  margin: 0 auto 80px;
  text-align: center;
}

.about-how-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 89px;
  color: #f0efe9;
  text-transform: uppercase;
  letter-spacing: 0.38px;
  line-height: 1;
  margin-bottom: 28px;
}

.about-how-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 26px;
  background: linear-gradient(to right, #bdbdbd, #575757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.27px;
}

.about-how-subtitle strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #f0efe9;
  color: #f0efe9;
}

/* Stacked cards (Figma “How we work”) */
.about-how-stack--figma {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 1240px;
  height: auto;
  padding-bottom: 48px;
}

.howw-swap-stage {
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 40px));
  height: 980px;
}

.howw-swap-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.howw-swap-card {
  position: absolute;
  left: 0;
  right: 0;
  cursor: pointer;
  user-select: none;
  height: var(--card-h, 586px);
  will-change: transform, opacity;
}

.howw-swap-card.is-front {
  cursor: default;
}

.howw-swap-surface {
  background: #1a1a1a;
  border-radius: 34.844px;
  border: 1.34px solid #556;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding: var(--card-pad, 72px);
  height: 100%;
}

.howw-swap-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.howw-swap-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: var(--num-size, 74.854px);
  line-height: 1;
  color: #fff;
  margin-bottom: 28px;
}

.howw-swap-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--title-size, 42.971px);
  letter-spacing: -0.4297px;
  color: #fff;
}

.howw-swap-card[data-card-id="02"][data-front="true"] .howw-swap-title {
  width: 553.322px;
  height: auto;
  color: #fff;
  /* Figma spec: pure white text (no stroke that makes it look grey) */
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 37.996px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.38px;
  display: block;
  margin: 0 0 18px;
  max-width: 100%;
}

.howw-swap-card[data-card-id="02"][data-front="true"] .howw-swap-desc {
  width: 452.394px;
  height: 175.733px;
  color: #fff;
  /* Figma spec: pure white text (no stroke that makes it look grey) */
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 23.748px;
  font-style: normal;
  font-weight: 400;
  line-height: 36.809px;
  max-width: 100%;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.howw-swap-card[data-card-id="03"][data-front="true"] .howw-swap-title {
  width: 361.654px;
  height: auto;
  color: #fff;
  /* Pure white (remove stroke that can tint text grey) */
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 28.296px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.283px;
  display: block;
  margin: 0 0 14px;
  max-width: 100%;
}

.howw-swap-card[data-card-id="03"][data-front="true"] .howw-swap-desc {
  color: #fff;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
}

.howw-swap-card[data-card-id="04"][data-front="true"] .howw-swap-desc {
  /* Match other cards: use the per-card CSS variables from inline styles */
  width: auto;
  height: auto;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: var(--desc-size, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--desc-line, 28px);
  max-width: 560px;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.howw-swap-desc {
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--desc-size, 26.857px);
  line-height: var(--desc-line, 41.628px);
  max-width: 560px;
  color: rgba(240, 239, 233, 0.78);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--desc-lines, 6);
  overflow: hidden;
}

/* Ensure 02 card description is pure white (#FFF) */
.howw-swap-card[data-card-id="02"] .howw-swap-desc {
  color: #fff;
}

.howw-swap-media {
  flex: 0 0 auto;
  width: var(--media-w, 360px);
  height: var(--media-h, 280px);
  border-radius: var(--media-radius, 30.054px);
  overflow: hidden;
  border: 1.503px solid #556;
  position: relative;
  align-self: flex-start;
  margin-top: 16px;
}

.howw-swap-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.howw-swap-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .howw-swap-card:not(.is-front):hover .howw-swap-surface {
    border-color: rgba(240, 239, 233, 0.35);
  }
}

.howw-step--01 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 34px;
  color: #f0efe9;
  z-index: 4;
}

.howw-step-media {
  width: 360px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(240, 239, 233, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  flex: 0 0 auto;
}

.howw-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howw-step-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.howw-step-title {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 31.725px;
  line-height: normal;
  letter-spacing: -0.317px;
  color: #fff;
}

.howw-step-num {
  color: rgba(255, 255, 255, 0.31);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 75.059px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.howw-step-desc {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-style: normal;
  line-height: 39.657px;
  max-width: 500.269px;
  color: #fff;
}

.howw-card {
  position: absolute;
  background: #1a1a1a;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.howw-card-surface {
  position: relative;
  z-index: 2;
}

.howw-card-media {
  position: absolute;
  overflow: hidden;
  border-radius: inherit;
}

.howw-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.howw-card-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.howw-card-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.howw-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.howw-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0.9;
}

/* 04 — Intelligence Analysis */
.howw-card--04 {
  left: 50%;
  top: 250px;
  width: 563.879px;
  height: 318.197px;
  transform: translateX(-50%);
  border-radius: 17.913px;
  background: #1a1a1a;
  z-index: 1;
}

.howw-card--04 .howw-card-surface {
  padding: 18px 18px 18px 18px;
}

.howw-card-num--04 {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 38.481px;
}

.howw-card-copy--04 {
  padding-left: 92px;
  padding-right: 248px;
  padding-top: 10px;
}

.howw-card-title--04 {
  font-size: 17.304px;
}

.howw-card-desc--04 {
  margin-top: 8px;
  font-size: 10.815px;
  line-height: 16.764px;
  max-width: 260px;
}

.howw-card-media--04 {
  right: 36px;
  top: 28px;
  width: 200px;
  height: 144px;
  border-radius: 15.45px;
  border: 0.773px solid #56534e;
}

/* 03 — Infrastructure Security */
.howw-card--03 {
  left: 50%;
  top: 450px;
  width: 1042.808px;
  height: 588.456px;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  border-radius: 34.939px;
  border: 0.892px solid #556;
  background: #1a1a1a;
  z-index: 2;
}

.howw-card-num--03 {
  position: absolute;
  left: 34px;
  top: 54px;
  font-size: 75.059px;
}

.howw-card-copy--03 {
  padding-left: 200px;
  padding-top: 82px;
  padding-right: 432px;
}

.howw-card-title--03 {
  font-size: 32px;
  line-height: normal;
}

.howw-card-desc--03 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 31px;
  max-width: 520px;
}

.howw-card-media--03 {
  right: 72px;
  top: 88px;
  width: 340px;
  height: 260px;
  border-radius: 30.136px;
  border: 1.507px solid #56534e;
}

/* 02 — Connectivity Infrastructure */
.howw-card--02 {
  left: 50%;
  bottom: 0;
  width: 1280.773px;
  height: 586.853px;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  border-radius: 34.844px;
  border: 1.34px solid #556;
  background: #1a1a1a;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  z-index: 3;
}

.howw-card-num--02 {
  position: absolute;
  left: 45px;
  top: 95px;
  font-size: 74.854px;
}

.howw-card-copy--02 {
  padding-left: 170px;
  padding-top: 138px;
  padding-right: 472px;
}

.howw-card-title--02 {
  font-size: 42.971px;
  letter-spacing: -0.4297px;
}

.howw-card-desc--02 {
  margin-top: 22px;
  font-size: 26.857px;
  line-height: 41.628px;
  max-width: 540px;
}

.howw-card-media--02 {
  right: 88px;
  top: 88px;
  width: 360px;
  height: 280px;
  border-radius: 30.054px;
  border: 1.503px solid #556;
}

/* ========================================
   About Page - Unified Workflow
   ======================================== */

.figma-purple-frame {
  width: 18766px;
  height: 12772px;
  border-radius: 1059px;
  border: 210px solid #C88CFF;
  background: #1E1E1E;
  box-sizing: border-box;
  max-width: 100%;
}

.about-unified {
  background: var(--black);
  padding: 0 40px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-unified-box {
  width: 1606px;
  height: 206px;
  max-width: 100%;
  position: relative;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-unified-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1A1A1A;
  border-radius: 26px;
  filter: blur(14.5px);
  z-index: 0;
}

.about-unified-pre {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 26.046px;
  line-height: 1.2;
  color: var(--color-grey-93, #F0EFE9);
  text-transform: uppercase;
  letter-spacing: 0.11px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.about-unified-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 64.034px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.36px;
  background: linear-gradient(90deg, #F0EFE9 0%, #3E3E3E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ========================================
   About Page - Bottom CTA
   ======================================== */

.about-cta-section {
  background: var(--grey-94);
  padding: 72px 144px 58px;
}

.about-cta-inner {
  display: flex;
  gap: 50px;
  align-items: stretch;
  justify-content: center;
  max-width: 1477px;
  margin: 0 auto;
}

.about-cta-image {
  flex: 1;
  min-height: 500px;
  border-radius: 4px;
  overflow: hidden;
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  flex: 1;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 50px;
  text-align: center;
}

.about-cta-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #1e1f2b;
  letter-spacing: -1.15px;
  line-height: 2;
}

.about-cta-content h3 strong {
  font-weight: 500;
}

.about-cta-content > p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #1e1f2b;
  line-height: 1.47;
  letter-spacing: -0.26px;
  max-width: 543px;
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border: 1px solid #1e2124;
  border-radius: 47px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.26px;
  transition: all 0.2s;
}

.btn-pill-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ========================================
   Technology Page - Hero
   ======================================== */

/* ========================================
   Strategic Engagement Page
   ======================================== */

.se-body {
  background: #cecece;
}

/* ---- nav active state on this page ---- */
.nav-link--se-active {
  opacity: 1;
  font-weight: inherit;
}

.se-main {
  padding-top: 94px; /* clear fixed header */
}

/* ---- Hero ---- */
.se-hero {
  padding: 30px 0 0;
}

.se-hero-inner {
  max-width: 1730px;
  margin: 0 auto;
  padding: 0 74px;
  display: grid;
  /* left col = title width from Figma (481px), right col fills the rest */
  grid-template-columns: 481px 1fr;
  gap: 49px;
  align-items: center;
}

.se-hero-title {
  /* Exact Figma typography */
  width: 481px;
  color: #322D2A;
  font-family: "Space Grotesk", sans-serif;
  font-size: 54.335px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
  letter-spacing: -1.462px;
}

.se-hero-image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.se-hero-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

/* ---- Contact ---- */
.se-contact {
  padding: 44px 0 100px;
}

.se-contact-inner {
  max-width: 1730px;
  margin: 0 auto;
  padding: 0 74px;
  display: grid;
  grid-template-columns: 481px 1fr;
  gap: 49px;
  align-items: start;
}

.se-contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
}

.se-contact-title {
  color: #322D2A;
  font-family: "Space Grotesk", sans-serif;
  font-size: 54.335px;
  font-style: normal;
  font-weight: 400;
  line-height: 58.477px;
  letter-spacing: -1.462px;
}

.se-contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ---- Form card ---- */
.se-form {
  width: 100%;
  max-width: 1052px;
  height: 440px;
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #d4d4d4;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 20px 22px 24px;
}

/* On many laptops the right column becomes too narrow for the 2-up fields,
   so the rows wrap and the fixed 440px height would clip the Message field. */
@media (max-width: 1596px) {
  .se-form {
    height: auto;
    overflow: visible;
  }
}

.se-success {
  margin: 0 0 12px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 185, 129, 0.55);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), rgba(209, 250, 229, 0.85));
  color: #064e3b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.10);
  transform: translateY(-6px);
  opacity: 0;
  animation: cfSuccessIn 280ms ease-out forwards;
}

.se-form-row {
  display: grid;
  gap: 20px;
}

.se-form-row + .se-form-row {
  margin-top: 0;
}

/* Two columns: fixed-width underlines (451.226px) with open gutter between — no connecting line */
.se-form-row--2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 16px;
}

.se-form-row--2 .se-field {
  flex: 0 0 451.226px;
  width: 451.226px;
  max-width: min(451.226px, 100%);
  box-sizing: border-box;
}

.se-form-row--2 .se-field::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1.103px solid #c4c4c4;
  margin-top: 2px;
  flex-shrink: 0;
}

.se-form-row:not(.se-form-row--2) .se-field::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1.103px solid #c4c4c4;
  margin-top: 2px;
}

.se-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 10px;
}

.se-label {
  font-family: "Inter", sans-serif;
  width: 105.963px;
  height: 20.327px;
  color: #000;
  font-size: 13.235px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.058px; /* 166.667% */
}

.se-input,
.se-select,
.se-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 4px 0 2px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(23, 23, 28, 0.85);
}

.se-textarea {
  resize: none;
  min-height: 80px;
}

.se-input::placeholder,
.se-textarea::placeholder {
  color: rgba(23, 23, 28, 0.4);
}

.se-input:focus,
.se-select:focus,
.se-textarea:focus {
  color: rgba(23, 23, 28, 1);
}

/* Dropdown arrow for select */
.se-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 22px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(23, 23, 28, 0.55) 50%),
    linear-gradient(135deg, rgba(23, 23, 28, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 10px) 52%,
    calc(100% - 5px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* ---- Send Message button ---- */
.se-submit {
  display: flex;
  width: 236.017px;
  height: 59.556px;
  padding: 16.543px 52.938px;
  align-items: flex-start;
  gap: 11.029px;
  justify-content: center;
  background: #000;
  color: #FFF;
  border: none;
  border-radius: 5.514px;
  box-shadow: 0 0 15.44px 0 rgba(0, 0, 0, 0.12);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 17.646px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.se-submit--below {
  margin-top: 18px;
}

.se-submit:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ========================================
   Applications Page - Hero
   ======================================== */

.app-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}

.app-hero-bg {
  position: absolute;
  inset: 0;
}

.app-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.app-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.app-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 109px;
  line-height: 117px;
  color: var(--white);
  letter-spacing: -2.94px;
  text-align: center;
}

.app-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 27px 35px;
  background: rgba(240, 237, 232, 0.2);
  backdrop-filter: blur(39px);
  -webkit-backdrop-filter: blur(39px);
  border-radius: 25px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}

.app-hero-btn:hover {
  background: rgba(240, 237, 232, 0.35);
}

/* ========================================
   Applications Page - High-Dependency Section
   ======================================== */

.app-dependency {
  background: #151616;
  padding: 120px 80px 100px;
  text-align: center;
}

.app-dependency-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 79px;
  line-height: 1.13;
  color: #f7f7f7;
  letter-spacing: -3.17px;
  margin-bottom: 60px;
}

.app-dependency-bold {
  font-weight: 700;
}

.app-dependency-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 47px;
  line-height: 1.52;
  color: #f7f7f7;
  letter-spacing: -1.89px;
  max-width: 1510px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   Applications Page - Application Sections
   ======================================== */

.app-sections {
  background: var(--white);
  padding: 80px 0;
  scroll-margin-top: 110px;
}

.app-section {
  display: flex;
  gap: 0;
  padding: 60px 60px 80px;
  max-width: 1728px;
  margin: 0 auto;
}

.app-section-left {
  flex-shrink: 0;
  width: 563px;
  padding-top: 40px;
}

.app-tab-indices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 70px;
}

.app-tab-index {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 27.78px;
  color: #dbdbdb;
  background: var(--white);
  padding: 2px 5px;
}

.app-tab-index--active {
  color: #202426;
}

.app-tab-divider {
  width: 145px;
  height: 1px;
  background: #dbdbdb;
  flex-shrink: 0;
}

.app-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 58.33px;
  color: #202426;
  letter-spacing: -1.26px;
}

.app-section-right {
  flex: 1;
  padding-top: 40px;
}

.app-section-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 33.33px;
  color: #767676;
  letter-spacing: -0.24px;
  margin-bottom: 24px;
}

.app-toggle {
  display: inline-flex;
  border: 1px solid #aaa;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: 20px;
}

.app-toggle-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1e1f2b;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 9999px;
  transition: background 0.2s;
}

.app-toggle-btn--active {
  background: #dbdbdb;
  color: #1e2124;
}

.app-switch {
  width: 100%;
  max-width: 1014px;
  aspect-ratio: 1014 / 589;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  --app-fade-seconds: 1s;
}

.app-media {
  width: 100%;
  max-width: 1014px;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 1014 / 589;
}

.app-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-details {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  padding: 38px 42px 64px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--app-fade-seconds) ease;
}

.app-details-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  letter-spacing: -0.24px;
  max-width: 900px;
}

.app-switch .app-media,
.app-switch .app-details {
  position: absolute;
  inset: 0;
}

.app-switch .app-media {
  opacity: 1;
  transition: opacity var(--app-fade-seconds) ease;
}

.app-switch--details .app-media {
  opacity: 0.55;
}

.app-switch--details .app-details {
  opacity: 1;
  pointer-events: auto;
}

/* Web/desktop-only: improve Details spacing without affecting mobile/tablet.
   Guarded by viewport + fine pointer so phones/tablets never pick it up. */
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .app-switch--details .app-details {
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 3vw, 54px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .app-switch--details .app-details-text {
    max-width: min(900px, 88%);
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.55;
  }
}

/* ========================================
   Applications Page - Bottom CTA
   ======================================== */

.app-bottom-cta {
  background: #151616;
  padding: 120px 80px 100px;
  text-align: center;
  position: relative;
}

.app-bottom-pill {
  width: 508px;
  height: 81px;
  border-radius: 126.5px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-bottom-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 126.5px;
  background: rgba(240, 237, 232, 0.08);
  filter: blur(1.95px);
}

.app-bottom-pill-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 89.85px;
  color: var(--white);
  letter-spacing: -2.62px;
  position: relative;
  z-index: 1;
}

.app-bottom-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 89.85px;
  color: #f0ede8;
  letter-spacing: -2.62px;
  margin-bottom: 60px;
}

.app-bottom-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 64.89px;
  color: #f0ede8;
  letter-spacing: -1.89px;
  max-width: 1584px;
  margin: 0 auto 80px;
}

.app-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 3px 47px;
  background: rgba(85, 85, 102, 0.2);
  border-radius: 36px;
  color: #f0ede8;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 62px;
  letter-spacing: -1.81px;
  transition: background 0.2s;
  height: 68px;
}

.app-bottom-btn:hover {
  background: rgba(85, 85, 102, 0.4);
}

.app-bottom-btn svg {
  flex-shrink: 0;
}

/* ========================================
   Applications Page - Footer Override
   ======================================== */

.app-footer {
  background: var(--white);
}

.app-footer .footer-logo img {
  filter: none;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1200px) {
  .mission-inner {
    flex-direction: column;
    gap: 40px;
  }

  .mission-eyebrow h2 {
    font-size: 40px;
  }

  .mission-content p {
    font-size: 22px;
  }

  .mission-icon-svg {
    width: 80px;
    height: 80px;
  }

  .mission {
    padding: 70px 24px 80px;
  }

  .mission-eyebrow h2 {
    font-size: 32px;
  }

  .mission-content {
    max-width: none;
  }

  .mission-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .mission-content p:last-of-type {
    margin-bottom: 28px;
  }

  .quote-section {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .quote-content {
    max-width: none;
    padding: 0 24px;
  }

  .quote-content h3 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .quote-content > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .btn-pill {
    font-size: 14px;
    padding: 11px 18px;
  }

  .models-inner {
    flex-direction: column;
  }

  .models-image {
    width: 100%;
    height: 500px;
  }

  .models-accordion {
    max-width: 100%;
  }

  .layers-grid {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .layers-heading {
    font-size: 42px;
  }

  .quote-content {
    padding: 0 40px 80px;
  }

  .quote-content h3 {
    font-size: 36px;
  }

  .cta-content {
    padding: 60px 40px 80px;
  }

  .cta-content h3 {
    font-size: 42px;
  }

  .cta-card {
    font-size: 28px;
    line-height: 40px;
  }

  .cta-arrow {
    font-size: 28px;
    line-height: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  /* About page tablet */
  .about-hero-content {
    padding: 0 40px;
    padding-bottom: 80px;
  }

  .about-hero-headline h1 {
    font-size: 42px;
  }

  .about-intro-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-intro-image {
    width: 100%;
    height: 280px;
  }

  .about-intro-eyebrow h2 {
    font-size: 48px;
  }

  .about-intro-content p {
    font-size: 22px;
  }

  .about-mission-heading {
    font-size: 60px;
  }

  .about-infra-card-inner {
    flex-direction: column;
  }

  .about-infra-image {
    width: 100%;
    height: 350px;
    margin-left: 0;
    margin-top: 24px;
  }

  .about-infra-text-header h3 {
    font-size: 32px;
  }

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

  .about-how-heading {
    font-size: 60px;
  }

  .about-how-stack {
    min-height: 0;
    padding-bottom: 0;
  }

  .how-card--stack {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    max-width: 100%;
    margin-bottom: 20px;
    flex-direction: column;
    padding: 28px;
  }

  .how-card--s1,
  .how-card--s2,
  .how-card--s3,
  .how-card--s4 {
    transform: none;
    bottom: auto;
  }

  .how-card-image {
    width: 100%;
    height: 220px;
  }

  .how-card-image-side,
  .how-card-image-side--featured {
    width: 100%;
    height: 200px;
  }

  .about-cta-section {
    padding: 60px 40px;
  }

  .about-cta-inner {
    flex-direction: column;
  }

  .about-unified-heading {
    font-size: 48px;
  }

  /* Technology page tablet */

  /* Strategic Engagement tablet */
  .se-hero-inner,
  .se-contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 40px;
  }

  .se-contact-left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Keep Message field visible when rows wrap to one column */
  .se-form {
    height: auto;
    overflow: visible;
  }

  /* Applications page tablet */
  .app-hero-title {
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -1.8px;
  }

  .app-hero-btn {
    font-size: 24px;
    padding: 20px 28px;
  }

  .app-dependency {
    padding: 80px 40px 60px;
  }

  .app-dependency-title {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .app-dependency-desc {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .app-section {
    flex-direction: column;
    padding: 40px 40px 60px;
    gap: 30px;
  }

  .app-section-left {
    width: 100%;
  }

  .app-tab-indices {
    margin-bottom: 30px;
  }

  .app-section-title {
    font-size: 34px;
    line-height: 46px;
  }

  .app-section-desc {
    font-size: 20px;
    line-height: 30px;
  }

  .app-media {
    border-radius: 24px;
  }

  .app-bottom-cta {
    padding: 80px 40px 60px;
  }

  .app-bottom-heading {
    font-size: 48px;
    line-height: 60px;
  }

  .app-bottom-desc {
    font-size: 32px;
    line-height: 44px;
  }

  .app-bottom-btn {
    font-size: 24px;
    padding: 3px 32px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    width: 100%;
  }

  .header-inner {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header-logo img {
    height: 32px;
    margin-left: 0;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 0.05px;
    flex-shrink: 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end; /* Move content to bottom to avoid fixed header overlap */
    padding: 0 24px;
    padding-bottom: 40px;
    gap: 32px;
  }

  .hero-headline h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
  }

  .hero-headline h1 br {
    display: none;
  }

  .hero-sidebar {
    width: 100%;
    padding: 12px 16px;
    gap: 10px;
  }

  .mission-inner {
    flex-direction: column;
    gap: 40px;
  }

  .mission-left {
    width: 100%;
  }

  .mission-icons {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mission-icon-svg {
    width: 80px;
    height: 80px;
  }

  .layers-section {
    padding: 60px 24px;
  }

  .layers-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .layers-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .layer-item {
    width: 100%;
    max-width: 400px;
  }

  .models-section {
    padding: 40px 24px;
  }

  .models-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .models-inner {
    flex-direction: column;
    gap: 40px;
  }

  .models-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .models-accordion {
    max-width: none;
    width: 100%;
  }

  .carousel-tabs {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .carousel-tabs::-webkit-scrollbar {
    display: none;
  }

  .carousel-progress-track,
  .industries-progress-line--track {
    width: 100% !important;
    max-width: 260px !important;
  }
  .carousel-header {
    padding: 0 24px;
  }

  /* Give the next-arrow its own space (avoid overlapping tab text) */
  .carousel-tabs {
    padding-right: 56px;
  }

  .carousel-next {
    right: 24px;
    top: 44px;
    width: 42px;
    height: 42px;
    display: none; /* mobile: swipe carousel, avoid overlapping tabs */
  }

  .carousel-track {
    padding: 0 24px;
    gap: 24px;
  }

  .carousel-card--large {
    width: 85vw;
    height: 480px; /* Increased height slightly for more breathing room */
  }

  .card-label-box {
    top: 12px;
    left: 12px;
    padding: 12px;
    max-width: calc(100% - 24px);
  }

  .card-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .card-earmark {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .card-desc {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    top: auto;
    width: auto;
    font-size: 14px;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 4px;
  }

  .industries-heading {
    font-size: 22px;
    line-height: 1.35;
    padding: 0 24px;
  }

  .quote-content h3 {
    font-size: 28px;
  }

  .cta-content {
    padding: 48px 24px 72px;
  }

  .cta-content h3 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 28px;
  }

  .cta-cards {
    flex-direction: column;
  }

  .cta-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 14px 16px 18px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.4px;
    align-items: center;
  }

  .cta-card--light,
  .cta-card--dark {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 14px 16px 18px;
    gap: 12px;
  }

  .cta-arrow {
    font-size: 18px;
    line-height: 24px;
  }

  .cta-card span:not(.cta-arrow) {
    white-space: normal;
    text-align: left;
  }

  .footer {
    padding: 0 24px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 0;
  }

  /* About page mobile */
  .about-hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    padding-top: 110px; /* clear fixed header on small screens */
    padding-bottom: 44px;
    gap: 24px;
  }

  .about-hero-headline h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.9px;
  }

  .about-hero-headline h1 br {
    display: none;
  }

  .about-intro {
    padding: 40px 24px;
  }

  .about-intro-inner {
    flex-direction: column;
    gap: 30px;
  }

  .about-intro-image {
    width: 100%;
    height: 200px;
  }

  .about-intro-eyebrow h2 {
    font-size: 36px;
  }

  .about-intro-content p {
    font-size: 18px;
  }

  .about-mission-heading {
    font-size: 42px;
  }

  .about-mission-subtitle {
    font-size: 20px;
  }

  .about-infra-card {
    padding: 20px 24px;
  }

  .about-infra-card-inner {
    flex-direction: column;
  }

  .about-infra-image {
    width: 100%;
    height: 250px;
    margin-left: 0;
    margin-top: 20px;
  }

  .about-infra-text-header h3 {
    font-size: 28px;
  }

  .about-infra-text-body p {
    font-size: 16px;
  }

  .about-infra-quote {
    font-size: 24px;
  }

  .about-typing-section {
    padding: 20px 24px;
  }

  .about-typing-box {
    height: auto;
    min-height: 260px;
    padding: 18px 16px;
    align-items: flex-start;
  }

  .about-typing-content {
    max-width: 100%;
    padding: 0;
    display: block;
  }

  .about-typing-text,
  .about-typing-cursor {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -0.8px;
    display: inline;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about-insights {
    padding: 40px 24px;
  }

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

  .about-insights-heading {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: 0.08px;
    text-align: center;
  }

  .about-insights-subtitle {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }

  .about-insights-inner {
    gap: 22px;
  }

  .insight-card {
    height: auto;
    min-height: 300px;
  }

  .insight-card::after {
    width: 110px;
    height: 64px;
  }

  .insight-card-title {
    font-size: 16px;
    line-height: 22px;
  }

  .about-how-we-work {
    padding: 60px 24px;
  }

  .about-how-heading {
    font-size: 42px;
  }

  .about-how-header {
    margin: 0 auto 40px;
  }

  .about-how-subtitle {
    font-size: 18px;
    line-height: 1.35;
  }

  /* How we work (Figma stack) — prevent overlap on small screens */
  .about-how-stack--figma {
    min-height: 0;
    padding-bottom: 20px;
  }

  .howw-step--01 {
    position: relative;
    z-index: 2;
    margin: 0 auto 18px;
  }

  .howw-step-num {
    font-size: 44px;
  }

  .howw-swap-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 1;
    height: 980px;
    margin: 0 auto;
  }

  .howw-swap-viewport {
    height: 920px;
  }

  .howw-swap-card {
    height: auto;
  }

  .howw-swap-surface {
    border-radius: 26px;
    padding: 22px 18px 20px;
    gap: 18px;
  }

  /* Keep the media inside the card on small screens (02/03/04) */
  .howw-swap-media {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 10;
    align-self: stretch;
  }

  .howw-swap-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .howw-swap-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .howw-swap-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 12px;
  }

  /* 02 card had extra-large, fixed-height copy; override on mobile to avoid overlapping the media */
  .howw-swap-card[data-card-id="02"][data-front="true"] .howw-swap-desc {
    width: auto;
    height: auto;
    font-size: 14px;
    line-height: 1.55;
    margin-top: 12px;
  }

  .how-card--stack {
    padding: 20px;
    margin-bottom: 16px;
  }

  .how-card-image {
    height: 180px;
  }

  .how-card-image-side,
  .how-card-image-side--featured {
    height: 160px;
  }

  .how-card-title {
    font-size: 20px;
  }

  .how-card-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .how-card-number {
    font-size: 40px;
  }

  .how-card-number--light {
    font-size: 44px;
  }

  .about-unified-heading {
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
  }

  .about-unified-pre {
    font-size: 18px;
    text-align: center;
    margin-bottom: 6px;
  }

  .about-unified {
    padding: 0 24px 60px;
  }

  .about-unified-box {
    height: auto;
    padding: 22px 16px;
  }

  .about-cta-section {
    padding: 40px 24px;
  }

  .about-cta-inner {
    flex-direction: column;
    gap: 24px;
    max-width: none;
  }

  .about-cta-image {
    min-height: 280px;
  }

  .about-cta-content {
    width: 100%;
    padding: 26px 18px;
    gap: 20px;
  }

  .about-cta-content h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .about-cta-content > p {
    font-size: 16px;
    max-width: none;
  }

  /* Technology page mobile */

  /* Strategic Engagement mobile */
  .se-main {
    padding-top: 90px;
  }

  .se-hero-inner,
  .se-contact-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 20px;
  }

  .se-hero-title {
    width: auto;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -0.9px;
  }

  .se-hero-image img {
    height: 240px;
  }

  .se-contact-title {
    width: auto;
    font-size: 30px;
  }

  .se-contact-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .se-form-row--2 {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 0;
  }

  .se-form-row--2 .se-field {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .se-form-row--2 .se-field:first-child,
  .se-form-row--2 .se-field:last-child {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  .se-form {
    height: auto;
    overflow: visible;
    padding: 16px 16px 18px;
  }

  .se-label {
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: 18px;
  }

  .se-input,
  .se-select,
  .se-textarea {
    font-size: 14px;
  }

  .se-textarea {
    min-height: 110px;
  }

  .se-submit {
    width: 100%;
  }

  /* Applications page mobile */
  .app-hero-title {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1px;
    padding: 0 20px;
  }

  .app-hero-btn {
    font-size: 18px;
    padding: 16px 24px;
    border-radius: 16px;
  }

  .app-dependency {
    padding: 60px 24px 40px;
  }

  .app-dependency-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .app-dependency-desc {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.4px;
  }

  .app-section {
    flex-direction: column;
    padding: 30px 24px 50px;
    gap: 24px;
  }

  .app-section-left {
    width: 100%;
  }

  .app-tab-indices {
    margin-bottom: 20px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .app-tab-index {
    font-size: 16px;
  }

  .app-tab-divider {
    width: 60px;
  }

  .app-switch,
  .app-media {
    max-width: 100%;
    border-radius: 24px;
  }

  .app-details {
    border-radius: 24px;
    padding: 18px 18px 22px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
  }

  .app-details-text {
    font-size: 12px;
    line-height: 18px;
    max-width: none;
  }

  /* Mobile: in Details mode, let the card grow so text isn't clipped */
  .app-switch--details {
    aspect-ratio: auto;
    height: auto;
  }

  .app-switch--details .app-details {
    position: relative;
    inset: auto;
    overflow: visible;
    background: #5a5a5a;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .app-switch--details .app-media {
    display: none;
  }

  .app-section-title {
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.8px;
  }

  .app-section-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .app-media {
    border-radius: 18px;
  }

  .app-bottom-cta {
    padding: 60px 24px;
  }

  .app-bottom-pill {
    width: 340px;
    height: 68px;
    margin-bottom: 18px;
  }

  .app-bottom-pill::before {
    border-radius: 9999px;
  }

  .app-bottom-pill-text {
    font-size: 28px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .app-bottom-heading {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
  }

  .app-bottom-desc {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.6px;
    margin-bottom: 40px;
  }

  .app-bottom-btn {
    font-size: 20px;
    padding: 3px 24px;
    height: 52px;
    line-height: 48px;
  }
}


/* Technology Page Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Space Grotesk'; background: #fff; color: #111; min-height: 100vh;}
 
    /* HERO (technology page only — matches .header horizontal rhythm: 36px + 1728px inner) */
    .tech-page .hero {
      padding: 180px 36px 28px;
      height: auto;
      min-height: unset;
      overflow: visible;
    }
    .tech-page .hero-title {
      color: var(--color-black-solid, #000);
      text-align: left;
      font-family: "Space Grotesk", sans-serif;
      font-size: 84.308px;
      font-style: normal;
      font-weight: 300;
      line-height: 90.735px;
      letter-spacing: -2.268px;
      max-width: 1728px;
      margin: 0 auto;
    }
 
    /* STACK SECTION */
    .stack-section {
      display: flex;
      justify-content: center;
      top: 0;
      max-width: 1728px;
      margin: 0 auto;
      padding: 0 76px;
      box-sizing: border-box;
      gap: 24px;
      position: relative;
      width: 1729px; /* Figma artboard width */
      max-width: 100%;
      align-items: flex-start;
      
    }
    .labels-left {
      display: flex; flex-direction: column;
      justify-content: space-around;
      width: 160px;  height: 530px; margin-top: -60px;
      position: absolute;
      left: 76px;
      top: 0;
    }
    .labels-right {
      display: flex; flex-direction: column;
      justify-content: space-between;
      width: 160px; margin-top: -101px; height: 430px;
      position: absolute;
      right: 76px;
      top: 0;
      align-items: flex-end;
    }
    .layer-num1 { color: rgba(0, 0, 0, 0.30); text-align: center; font-family: "Space Grotesk"; font-size: 126.468px; font-style: normal; font-weight: 600; line-height: 159%;  letter-spacing: -5.059px; width: 140px; opacity: 0.35; transform: translateX(18px); }

    .layer-num4 { color: rgba(0, 0, 0, 0.30); text-align: center; font-family: "Space Grotesk"; font-size: 52.852px; font-style: normal; font-weight: 600; line-height: 159%;  letter-spacing: -2.114px; width: 66px; height: 84px ; opacity: 0.35; transform: translateX(14px); }

    .layer-num2 { color: rgba(0, 0, 0, 0.30); text-align: center; font-family: "Space Grotesk"; font-size: 81.166px; font-style: normal; font-weight: 600; line-height: 159%;  letter-spacing: -3.247px; width: 98px; height: 120px ; margin-left: 0; opacity: 0.35; transform: translate(-64px, -6px); }

    .layer-num3 { color: rgba(0, 0, 0, 0.30); text-align: center; font-family: "Space Grotesk"; font-size: 59.773px; font-style: normal; font-weight: 600; line-height: 159%;  letter-spacing: -2.391px; width: 73px; height: 95px ; margin-left: 0; opacity: 0.35; transform: translateX(-12px); }
    .layer-label-right {
      display: flex; align-items: flex-start;
      justify-content: flex-end; text-align: right;
    }
    .connector-bar { width: 2px; height: 40px; margin: 8px 0 0 8px; border-radius: 2px; }
    .connector-bar-right { width: 2px; height: 40px; margin: 8px 8px 0 auto; border-radius: 2px; }
 
    /* DIAGRAM */
    .stack-diagram {
      width: 1275px;
      height: 612px;
      min-width: 1275px;
      min-height: 612px;
      margin: 0 auto;
      aspect-ratio: 25/12;
      background: url("assets/hero-section-image.png") transparent center/contain no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
      flex: 0 0 auto;
    }
 
    /* BOTTOM TEXT (Figma 400:10416) */
    .tech-page .bottom-text {
      position: relative;
      box-sizing: border-box;
      max-width: 1728px;
      width: 100%;
      margin: -20px auto 0;
      padding: 0 36px 48px;
      text-align: left;
      font-family: "Inter", Arial, sans-serif;
      font-size: 40px;
      font-style: normal;
      line-height: 1.59;
      letter-spacing: -1.6px;
    }

    .tech-page .bottom-text-lead {
      font-weight: 500;
      color: #0f1729;
    }

    .tech-page .bottom-text-body {
      font-weight: 500;
      color: rgba(15, 23, 41, 0.8);
    }

    .tech-page .bottom-text-period {
      font-weight: 400;
      color: rgba(15, 23, 41, 0.8);
    }

    /* Dark diagram canvas (Figma 400:10348) */
    .section2 {
    /* Figma node 400:11007 (canvas fill) */
    background-color: #151616;
    background-image: none;
    position: relative;
    width: 100%;
    min-height: 1300px;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  /* ── CARDS ── */
  .s2-card {
    position: absolute;
    background: #fff;
    color: #0e1118;
    width: 320px;
    padding: 12px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
  }
 
  .s2-card .card-meta {
    color: #00603A;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10.343px;
    font-style: normal;
    font-weight: 400;
    line-height: 15.514px; /* 150% */
    letter-spacing: 1.862px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
 
  .s2-card .card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
 
  .s2-card .card-icon {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .s2-card .card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
  }
  
  .s2-card .card-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
  }
 
  .s2-card .card-title {
    color: #000;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .card-shield .card-title,
  .card-shield .feature-title {
    color: #00603a;
  }
 
  .s2-card .feature {
    margin-bottom: 15px;
  }
 
  .s2-card .feature-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
 
  .s2-card .feature-desc {
    color: #555;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.5;
  }
 
  /* ── DIAGRAM STABILIZATION ── */
  .s2-diagram-wrapper {
    position: relative;
    width: 1440px;
    height: 1200px;
    margin: 0 auto;
    z-index: 2;
  }

  .s2-diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  /* ── CARD POSITIONS (Pixel Perfect) ── */
  .card-shield {
    top: 200px;
    left: 560px; /* Center: 720 - 160 */
    width: 356.345px;
    padding: 1.103px;
    border-radius: 0;
    box-shadow: none;
    border: 1.103px solid rgba(0, 96, 58, 0.38);
  }

  .card-shield .card-meta {
    margin: 0;
    padding-left: 27.581px;
    padding-top: 16px;
    opacity: 0.7;
  }

  .card-shield .card-head {
    height: 107.979px;
    gap: 16.549px;
    margin: 0;
    padding: 0 0 1.103px 27.581px;
    border-bottom: 1.103px solid rgba(0, 0, 0, 0.09);
  }

  .card-shield .card-icon {
    width: 52.404px;
    height: 52.404px;
    background: #151616;
    border: 1.103px solid rgba(0, 96, 58, 0.38);
  }

  .card-shield .card-icon img {
    width: 27.581px;
    height: 27.581px;
  }

  .card-shield .card-title {
    color: #00603a;
    font-size: 17.238px;
    font-weight: 700;
    line-height: 21.548px;
    letter-spacing: 1.207px;
  }

  .card-shield .card-title span {
    display: block;
  }

  .card-shield .card-body {
    padding-left: 27.581px;
    padding-top: 19.307px;
    padding-bottom: 10px;
  }

  .card-shield .feature {
    margin: 0 0 11.032px 0;
    padding-left: 13.79px;
    border-left: 1.103px solid rgba(0, 96, 58, 0.38);
  }

  .card-shield .feature-title {
    color: #00603a;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14.48px;
    font-weight: 600;
    line-height: 23.168px;
    letter-spacing: 0.579px;
    margin: 0;
  }

  .card-shield .feature-desc {
    color: #6a6a65;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.271px;
    margin-top: 0.4px;
  }
 
  .card-network {
    top: 400px;
    left: 100px;
  }

  /* Figma node 904:5002 (Network card feature list) */
  .card-network .card-body {
    padding-left: 27.581px;
    padding-top: 19.307px;
    padding-bottom: 10px;
  }

  .card-network .feature {
    margin: 0 0 11.032px 0;
    padding-left: 13.79px;
    border-left: 1.103px solid rgba(0, 0, 0, 0.09);
  }

  .card-network .feature-title {
    color: #111110;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14.48px;
    font-weight: 600;
    line-height: 23.168px;
    letter-spacing: 0.579px;
    text-transform: uppercase;
    margin: 0;
  }

  .card-network .feature-desc {
    color: #6a6a65;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.271px;
    margin-top: 0.4px;
  }
 
  .card-soar {
    top: 400px;
    left: 1020px;
  }
  
  /* Figma node 904:4938 (SOAR card) */
  .card-soar {
    width: 425.298px;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 1.103px solid #cccac3;
    background: #fff;
  }

  .card-soar .card-meta {
    color: #9e9d96;
    padding-left: 98.49px;
    padding-top: 25.1px;
    margin: 0;
    opacity: 1;
  }

  .card-soar .card-head {
    height: 107.979px;
    gap: 0;
    margin: 0;
    padding: 0;
    border-bottom: 1.103px solid rgba(0, 0, 0, 0.09);
  }

  .card-soar .card-icon {
    width: 52.404px;
    height: 52.404px;
    margin-left: 29.54px;
    margin-top: 30.27px;
    background: #151616;
    border: 1.103px solid #cccac3;
  }

  .card-soar .card-icon svg {
    width: 27.581px;
    height: 27.581px;
    stroke: #fff;
  }

  .card-soar .card-title {
    color: #111110;
    font-size: 17.238px;
    font-weight: 700;
    line-height: 21.548px;
    letter-spacing: 1.207px;
    margin-left: 16.549px;
    margin-top: 25.1px;
  }

  .card-soar .card-title span {
    display: block;
  }

  .card-soar .card-body {
    padding-left: 30.64px;
    padding-top: 9.65px; /* 117.63 - 107.98 */
    padding-bottom: 18px;
  }

  .card-soar .feature {
    margin: 0 0 11.032px 0;
    padding-left: 13.78px;
    border-left: 1.103px solid rgba(0, 0, 0, 0.09);
  }

  .card-soar .feature-title {
    color: #111110;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14.48px;
    font-weight: 600;
    line-height: 23.168px;
    letter-spacing: 0.579px;
    text-transform: uppercase;
    margin: 0;
  }

  .card-soar .feature-desc {
    color: #6a6a65;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.271px;
    margin-top: 0.4px;
  }

  /* Figma node 904:5024 (SIEM card feature list) */
  .card-siem .card-body {
    padding-left: 27.581px;
    padding-top: 19.307px;
    padding-bottom: 10px;
  }

  .card-siem .feature {
    margin: 0 0 11.032px 0;
    padding-left: 13.79px;
    border-left: 1.103px solid rgba(0, 0, 0, 0.09);
  }

  .card-siem .feature-title {
    color: #111110;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14.48px;
    font-weight: 600;
    line-height: 23.168px;
    letter-spacing: 0.579px;
    text-transform: uppercase;
    margin: 0;
  }

  .card-siem .feature-desc {
    color: #6a6a65;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24.271px;
    margin-top: 0.4px;
  }
 
  .card-siem {
    top: 750px;
    left: 560px;
  }
 
  .s2-label {
    position: absolute;
    color: #C88CFF;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    top: 915px; 
    left: 310px;
    width: auto;
    z-index: 3;
    white-space: nowrap;
    
    /* Requested Style */
    background: #1E1E1E;
    border: 1px solid #C88CFF; /* Adjusted from 210px to 1px for sanity, assuming 2.1px or typo */
    border-radius: 1059px;
    padding: 6px 16px;
  }
 
  /* External Systems at bottom */
  .s2-center-icon {
    position: absolute;
    top: 1120px;
    left: 720px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 5;
  }

  .icon-frame {
    display: flex;
    width: 63.436px;
    height: 63.436px; /* standardizing to square based on width */
    padding: 0 15.445px;
    justify-content: center;
    align-items: center;
    border: 1.103px dashed #CCCAC3;
    background: rgba(255, 255, 255, 0.60);
    box-sizing: border-box;
  }
  
  .s2-center-icon svg {
    width: 32px;
    height: 32px;
    stroke: #333; /* Darker stroke for better visibility on white bg */
    stroke-opacity: 0.8;
  }

  .icon-label {
    color: #9E9D96;
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13.084px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.583px;
    letter-spacing: 2.11px;
    text-transform: uppercase;
  }

  .Ellipse {
    position: absolute;
    top: 50%; 
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    z-index: 0;
  }


    .section3 {
    background: #fff;
    width: 100%;
    font-family: 'Space Grotesk', Arial, sans-serif;
    color: #0F1729;
  }

  /* ── INTRO TEXT (Figma 400:10415) ── */
  .s3-intro {
    position: relative;
    box-sizing: border-box;
    max-width: 1728px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 36px 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    line-height: 1.59;
    letter-spacing: -1.44px;
    color: #0f1729;
  }

 .hr-long {
  background: #D9D9D9;
  width: 1330px;
  height: 3px;
  margin: 113px auto 0 auto; /* top right bottom left */
}
 
  /* ── DATA FLOW BLOCK ── */
  .s3-dataflow {
    width: 1590px;
    position: relative;
    margin: 0 auto;
    padding: 60px 80px;
  }
 
  .s3-tag {
    color: #000;
    font-family: "Space Grotesk";
    font-size: 37.686px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    padding: 0 50px;
  }
 
  .s3-heading {
    color: #000;
    font-family: "Space Grotesk";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 85px;
    padding: 0 50px;
  }
 
  .s3-hori-row{overflow-x:auto; 
  min-width:960px;
}
  
  .s3-flow-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 85px;
    flex: 0 0 auto;
    padding: 0 40px;
  }
 
  .s3-flow-box {
    border-radius: 9px;
    border: 4px solid #C88CFF;
    background: #FFF;
    align-items: center;
    text-align: center;
    padding-top: 15px;
    height: 90px;
    flex: 0 0 auto;
    margin: 5px;
  }
 
.s3-flow-row > .s3-flow-box:nth-child(1) { width: 167px; }
.s3-flow-row > .s3-flow-box:nth-child(3) { width: 205px; }
.s3-flow-row > .s3-flow-box:nth-child(5) { width: 227px; }
.s3-flow-row > .s3-flow-box:nth-child(7) { width: 211px; }
.s3-flow-row > .s3-flow-box:nth-child(9) { width: 204px; }
.s3-flow-row > .s3-flow-box:nth-child(11){ width: 205px; }
  
 
  .s3-flow-box .fb-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #00603A;
    margin-bottom: 2px;
  }
 
  .s3-flow-box .fb-title {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #000;
    font-family: "Space Grotesk";
    font-size: 18.4px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
 
  .s3-flow-box .fb-sub {
    margin-top: 1px;
    color: #56534E;
    font-family: Inter;
    font-size: 14.72px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
 
  .s3-arrow {
  width: 32px;
  height: 32px;
  position: relative; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
}

 .s3-arrow-svg1 {
  width: 31px;
  height: 31px;
  position: absolute;
  left: 0;
}

/* second (smaller) arrow */
.s3-arrow-svg2 {
  width: 14.208px;
  height: 18.083px;
  fill: #2E2E2E;
  position: absolute;
  left: 2px;   /* adjust for overlap */
}

/* Main row container */
.layer-labels-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  margin-top: 6px;
  padding-left: 0;
}

/* Inner wrapper */
.layer-labels-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: -80px;
}

/* Column container */
.layer-column {
  display: flex;
  flex-direction: column;
}

/* Top vertical dashed line */
.layer-top-line {
  margin-left: 320px;
}

/* Row of labels and horizontal dividers */
.layer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  align-items: flex-start;
}

/* Label styling */
.layer-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #56534E;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
  flex-shrink: 0;
}

/* Specific label offsets */
.layer-01 {
  margin-left: 280px;
  margin-bottom: 2px;
}

.layer-03 {
  margin-top: 18px;
  padding-left: 12px;
}

/* Horizontal dividers */
.layer-divider {
  margin-top: 6px;
  flex-shrink: 0;
}

.layer-divider.short {
  width: 148px;
}

/* Layer 03 vertical container */
.layer-03-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: -48px;
}

/* Vertical line for Layer 03 */
.layer-03-line {
  margin-left: 30px;
  flex-shrink: 0;
}
 
  /* layer labels under top row */
  .s3-layer-labels {
    display: flex;
    padding-left: 128px;
    gap: 0;
    margin-bottom: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: #aaa;
    text-transform: uppercase;
  }
 
  .s3-layer-label-item {
    min-width: 110px;
  }
 
  /* Main container for down arrow section */
.down-arrow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 68px;
}

/* Text label above arrow */
.down-arrow-label {
  color: #000;
font-family: "Space Grotesk";
font-size: 13.446px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

/* Wrapper for arrow to control layout */
.down-arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}

/* Down arrow SVG */
.down-arrow {
  display: block;
}

/* Horizontal dashed line below everything */
.down-arrow-line {
  width: 100%;
  max-width: 1008px;
  height: 1px;
  margin: 10px 0 -18px 0;
  
}
 
  /* ── LAYER GRID ── */
  .s3-layer-grid {
    border: 1px solid #e0e0d8;
    width: 100%;
    margin-bottom: 0;
  }
 
  .s3-layer-row {
    display: flex;
    border-bottom: 1px solid #e0e0d8;
    min-height: 140px;
  }
 
  .s3-layer-row:last-child {
    border-bottom: none;
  }
 
  .s3-layer-label-col {
    width: 90px;
    flex-shrink: 0;
    border-right: 1px solid #e0e0d8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: #888;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
  }
 
  .s3-layer-cells {
    display: flex;
    flex: 1;
  }
 
  .s3-cell {
    flex: 1;
    border-right: 1px solid #e0e0d8;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
 
  .s3-cell:last-child {
    border-right: none;
  }
 
  .s3-cell-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e0;
  }
 
  .s3-cell-icon {
    width: 28px;
    height: 28px;
    background: #0e1118;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .s3-cell-icon svg {
    width: 14px;
    height: 14px;
    stroke: #00603A;
    fill: none;
    stroke-width: 1.5;
  }
 
  .s3-cell-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0F1729;
    line-height: 1.3;
  }
 
  .s3-cell-arrow-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2px;
  }
 
  .s3-cell-desc {
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    font-size: 11px;
    color: #666;
    line-height: 1.55;
  }
 
  /* inter-cell arrow connector */
  .s3-cell-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
    width: 0;
    position: relative;
  }
 
  /* ── OPERATIONAL CAPABILITIES (Figma ~400:10651) ── */
  .s3-ops {
    box-sizing: border-box;
    max-width: 1728px;
    width: 100%;
    margin: 0 auto;
    padding: 88px 36px 96px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px 56px;
    align-items: flex-start;
  }

  .s3-ops-left {
    flex: 0 1 420px;
    min-width: min(100%, 280px);
  }

  .s3-ops-heading {
    font-family: "Space Grotesk", sans-serif;
    font-size: 50px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -1px;
    line-height: 50px;
    color: #1e2124;
    margin: 0;
  }

  .s3-ops-right {
    flex: 1 1 480px;
    min-width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .s3-ops-desc {
    font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: #767676;
    line-height: 26px;
    margin: 0 0 40px;
    max-width: 52rem;
  }

  .s3-ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 337.5px));
    column-gap: 32px;
    row-gap: 4px;
    align-content: start;
  }

  .s3-ops-cell {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 337.5px;
  }

  .s3-ops-item {
    display: block;
    padding: 14px 0 12px;
    font-family: "Segoe UI", "Inter", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px;
    color: #1e2124;
  }

  .s3-ops-item-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #1e2124;
    flex-shrink: 0;
  }

  .hr-short {
    background: var(--color-grey-13, #1e2124);
    width: 337.5px;
    height: 1px;
    border: none;
  }

  .grid-line-col {
    display: flex;
    flex-direction: column;
  }

  :root {
    --color-layer1: #d4e157; /* Lime Green */
    --color-layer2: #42a5f5; /* Blue */
    --color-layer3: #ce93d8; /* Light Purple */
    --bg-layer1: #f9fbe7;
    --bg-layer2: #e3f2fd;
    --bg-layer3: #f3e5f5;
    --text-main: #333;
    --text-sub: #666;
}

/* Architecture diagram (Layer 01–03) — card above copy, no negative transform */
.architecture-container {
  box-sizing: border-box;
  max-width: 1728px;
  width: 100%;
  margin: 0 auto;
  padding: 0 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.architecture-diagram-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}



.layer-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px 24px;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.layer-label-hd {
  flex-shrink: 0;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Space Grotesk", sans-serif;
  color: #56534e;
  width: 140px;
  text-align: left;
  margin: -40px 0 0; /* Aligned with cards sitting on border */
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.layer-label-hd::after {
  content: "";
  flex: 1;
  height: 1px;
  border-top: 1px dotted #bbb;
  margin-left: 12px;
}

/* Outer tinted panel */
.layer-content {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: visible; /* Crucial for overlapping cards */
  padding: 70px 32px 48px; /* Room for cards on top and spacing below */
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0;
  height: auto;
  min-height: 0;
  position: relative;
  border-radius: 20.983px; /* Figma 920:847 (Layer 01 panel) */
  border: 0.677px solid #caf04b;
  background: rgba(202, 240, 75, 0.09);
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.layer-02 .layer-content {
  border-radius: 15.708px; /* Figma 920:873 (Layer 02 panel) */
  border: 0.507px solid #7a96fc;
  background: rgba(4, 8, 15, 0.04);
}

.layer-03 .layer-content {
  border-radius: 18.938px; /* Figma 920:892 (Layer 03 panel) */
  border: 0.611px solid #c88cff;
  background: rgba(200, 140, 255, 0.08);
}

.layer-content-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px 48px;
  width: 100%;
}

.arch-stack {
  flex: 1 1 200px;
  max-width: 250px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.arch-stack p {
  margin: 0 auto;
  max-width: 220px;
  font-size: 13.5px;
  color: #333;
  font-weight: 400;
  line-height: 1.65;
}

/* Figma node 904:5103 — Technology / Phantom Shield description */
.arch-stack--shield {
  max-width: 320px;
}

.tech-figma-904-5103 {
  width: 100%;
  max-width: 293px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7; /* 170% */
  color: #000;
}

/* Horizontal arrows between stacks */
.arch-stack:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -45px; /* Aligned with the card's vertical center on border */
  right: -30px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 2;
}

.card-layer {
  width: 100%;
  max-width: 216px;
  margin: -110px 0 0; /* Pull high up to center on border */
  background: #fff;
  z-index: 10;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-layer:hover {
  transform: translateY(-8px) scale(1.02);
}

.card-header {
  box-sizing: border-box;
  width: 100%;
  min-height: 86px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  border: 4px solid #caf04b;
  font-family: "Space Grotesk", sans-serif;
  color: #000;
}

.card-header span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  margin-top: 5px;
  line-height: 1.3;
  text-transform: none;
}

.layer-01 .card-header { border-color: #caf04b; }
.layer-02 .card-header { border-color: #2068e6; }
.layer-03 .card-header { border-color: #c88cff; }


.s3-flow-arrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 32px;
  position: relative;
  max-width: 100%;
  left: 0;
  margin: -24px auto 0;
  padding: 0 16px;
  line-height: 0;
}

.s3-flow-arrow svg:nth-child(1) {
  /* Phantom Gateway → Phantom Shield */
  transform: translateX(-78px);
}

.s3-flow-arrow svg:nth-child(2) {
  transform: translateX(0);
}

.s3-flow-arrow-sec {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
  position: relative;
  max-width: 100%;
  left: 0;
  margin: -32px auto 0;
  padding: 0 16px;
  line-height: 0;
}

/* Layer 02 → Layer 03 dotted connectors (align to card headings) */
.s3-flow-arrow-sec svg:nth-child(1) {
  /* Phantom Shield → Phantom SIEM */
  transform: translate(-215px, 6px);
}

.s3-flow-arrow-sec svg:nth-child(2) {
  /* Phantom EDR → Phantom SOAR */
  transform: translate(-110px, 6px);
}

.s3-flow-arrow-sec svg:nth-child(3) {
  /* Phantom NDR → Threat Intelligence */
  transform: translate(-70px, 6px);
}

.s3-flow-arrow svg {
  display: block;
}
.layer-01 .card-header {
  border-radius: 7.987px;
  border-width: 3.55px;
  border-style: solid;
  border-color: #caf04b;
}

.layer-02 .card-header {
  border-radius: 7.987px;
  border-width: 3.55px;
  border-style: solid;
  border-color: #2068e6;
}

.layer-03 .card-header {
  border-radius: 7.987px;
  border-width: 3.55px;
  border-style: solid;
  border-color: #c88cff;
  background: #fff;
}

/* Contact block (Figma 400:10667) */
.contact-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  background: #fff;
  padding: 0 36px 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 72px;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.contact-section::before {
  content: "";
  display: block;
  width: min(100%, 1555px);
  height: 3px;
  margin: 0 auto 44px;
  background: #d9d9d9;
  flex: 0 0 100%;
  flex-basis: 100%;
}

/* ── LEFT: Heading ── */
.contact-heading-col {
  flex: 0 1 600px;
  min-width: min(100%, 280px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 47px;
}

.contact-heading {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-size: 100px;
  font-weight: 400;
  line-height: 115px;
  letter-spacing: -2px;
  color: #1e2124;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-heading-line {
  display: block;
  line-height: 115px;
}

/* ── RIGHT: Form ── */
.contact-form-col {
  flex: 1 1 400px;
  min-width: min(100%, 320px);
  max-width: 819px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding-top: 146px;
}
 
/* ── Field group ── */
.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.cf-field:last-of-type {
  margin-bottom: 0;
}

.cf-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16.165px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.8082px;
  line-height: 25.864px;
  text-transform: uppercase;
  color: #1e2124;
  margin: 0 0 4px;
  padding-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.cf-label .required {
  font-family: "Segoe UI", "Inter", sans-serif;
  font-weight: 700;
  font-size: 16.165px;
  line-height: 25.864px;
  letter-spacing: 0.8082px;
  color: #ff4136;
  margin-left: 16px;
}
 
.cf-input {
  background: transparent;
  border: none;
  border-bottom: 1.616px solid #636363;
  height: 48.494px;
  align-self: stretch;
  outline: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: #0a0a0a;
  padding: 6px 0 10px;
  width: 100%;
  transition: border-color 0.2s;
}
 
.cf-input:focus {
  border-bottom-color: #000;
}
 
.cf-input::placeholder {
  color: transparent;
}
 
/* ── Textarea label ── */
.cf-textarea-label {
  font-family: "Segoe UI", "Inter", sans-serif;
  font-size: 16.165px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.864px;
  letter-spacing: 0.8082px;
  text-transform: uppercase;
  color: #1e2124;
  margin: 24px 0 10px;
}

.cf-textarea {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  outline: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  color: #0a0a0a;
  padding: 12px 14px;
  width: 100%;
  max-width: 819px;
  height: 119px;
  resize: vertical;
  transition: border-color 0.2s;
}
 
.cf-textarea:focus {
  border-color: #000;
}
 
/* ── Submit button ── */
.cf-submit {
  box-sizing: border-box;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 222px;
  height: 50.646px;
  padding: 0;
  border: none;
  border-radius: 15.194px;
  background: #0f1729;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30.311px;
  font-style: normal;
  font-weight: 400;
  line-height: 34.858px;
  letter-spacing: -0.606px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
 
.cf-submit:hover {
  background: #1f2937;
}

.cf-success {
  margin: 0 0 28px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 185, 129, 0.55);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95), rgba(209, 250, 229, 0.85));
  color: #064e3b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.10);
  transform: translateY(-6px);
  opacity: 0;
  animation: cfSuccessIn 280ms ease-out forwards;
}

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

/* ============================================================
   FOOTER — footer.css
   ============================================================ */

.site-footer {
  width: 100%;
  background: #fff;
  padding: 48px 128px 32px;
  font-family: 'Space Grotesk', Arial, sans-serif;
}

/* ── TOP ROW: logo + nav columns (only when using .site-footer) ── */
.site-footer .footer-top {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 48px;
}

/* ── LOGO BLOCK ── */
.footer-logo-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-dot-grid {
  display: grid;
  grid-template-columns: repeat(5, 5px);
  gap: 3.5px;
}

.footer-dot-grid span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
}

/* top 2 rows dark, bottom row grey */
.footer-dot-grid span:nth-child(-n+10) { background: #1a1a1a; }
.footer-dot-grid span:nth-child(n+11)  { background: #c0bfba; }
.footer-brand  {
      display: block;
      background: url('assets/logo-black-tech.png') rgba(255, 255, 255, 0) 50% / contain no-repeat; 
      width: 433px;
      height: 107px;
      aspect-ratio: 433/107;
      transform: rotate(-0.159deg);
    }

/* ── NAV COLUMNS ── */
.footer-nav-cols {
  display: flex;
  gap: 380px;
  flex: 1;
  justify-content: flex-end;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 100px;
}

.footer-nav-heading {
  color: #8B8D9D;
  font-family: Inter;
  font-size: 15.016px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.524px; /* 150% */
  letter-spacing: 2.252px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-nav-col a {
  color: #556;
font-family: Inter;
font-size: 17.018px;
font-style: normal;
font-weight: 400;
line-height: 25.528px; /* 150% */
text-decoration: none;
}

.footer-nav-col a:hover {
  color: #000;
}

/* ── BOTTOM ROW (only when using .site-footer) ── */
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  min-height: 63.568px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(63, 107, 177, 0.12);
}

.site-footer .footer-copy {
  color: #8b8d9d;
  font-family: Inter, sans-serif;
  font-size: 15.016px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.524px;
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer .footer-legal a {
  color: #8b8d9d;
  font-family: Inter, sans-serif;
  font-size: 15.016px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.524px;
  text-decoration: none;
}

.site-footer .footer-legal a:hover {
  color: #333;
}

/* ── Responsive (.site-footer only) ── */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 24px 24px;
  }
  .site-footer .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .site-footer .footer-nav-cols {
    flex-wrap: wrap;
    gap: 36px;
    justify-content: flex-start;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 0 20px 64px;
    gap: 0;
  }
  .contact-section::before {
    margin-bottom: 32px;
  }
  .contact-heading-col {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 24px;
  }
  .contact-heading {
    font-size: clamp(40px, 12vw, 72px);
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .contact-heading-line {
    line-height: inherit;
  }
  .contact-form-col {
    padding-top: 32px;
    max-width: none;
  }
  .cf-field {
    margin-bottom: 28px;
  }

  .cf-label,
  .cf-textarea-label {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.08em;
  }

  .cf-label .required {
    font-size: 13px;
    line-height: 20px;
    margin-left: 10px;
  }

  .cf-input {
    height: 44px;
    font-size: 14px;
    padding: 6px 0 8px;
  }

  .cf-textarea-label {
    margin: 18px 0 10px;
  }

  .cf-textarea {
    font-size: 14px;
    height: 140px;
    max-width: none;
  }

  .cf-submit {
    width: 100%;
    align-self: stretch;
    font-size: 22px;
    height: 48px;
  }
}

/* ============================================================
   TECH PAGE — stack (hero/title: see Technology Page Styles above)
   ============================================================ */

.tech-page .stack-section {
    margin-top: -18px;
}

@media (max-width: 768px) {
  .tech-page .hero {
    padding: 140px 20px 24px;
  }
  .tech-page .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.06em;
  }

  /* Tech page hero stack diagram (mobile) */
  .tech-page .stack-section {
    width: 100%;
    padding: 0 20px;
    gap: 0;
  }

  .tech-page .labels-left,
  .tech-page .labels-right {
    display: none;
  }

  .tech-page .stack-diagram {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: 1275 / 612;
    background-size: contain;
  }

  .tech-page .bottom-text {
    margin-top: 12px;
    padding: 0 20px 34px;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.03em;
  }

  .tech-page .bottom-text-period {
    letter-spacing: inherit;
  }

  /* Tech page data-flow heading block */
  .tech-page .hr-long {
    width: calc(100% - 40px);
    margin: 44px auto 0;
  }

  .tech-page .s3-dataflow {
    width: 100%;
    padding: 34px 0 10px;
  }

  .tech-page .s3-tag {
    font-size: 18px;
    padding: 0 20px;
    margin-top: 0;
  }

  .tech-page .s3-heading {
    font-size: clamp(28px, 8.5vw, 40px);
    padding: 0 20px;
    margin-top: 10px;
    margin-bottom: 28px;
  }

  /* Hide large connector arrows on mobile (they create big empty space) */
  .tech-page .s3-flow-arrow,
  .tech-page .s3-flow-arrow-sec {
    display: none;
  }

  .tech-page .architecture-container {
    padding: 0 20px 44px;
  }

  .tech-page .architecture-diagram-img {
    max-width: 100%;
  }

  /* Tech page section2 (diagram + cards) — mobile stacked layout */
  .tech-page .section2 {
    min-height: auto;
    padding: 44px 0 56px;
  }

  .tech-page .Ellipse {
    width: 520px;
    height: 520px;
    filter: blur(80px);
  }

  .tech-page .s2-diagram-wrapper {
    width: 100%;
    height: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .tech-page .s2-diagram-lines,
  .tech-page .s2-label {
    display: none;
  }

  .tech-page .s2-card {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 14px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
    border-radius: 10px;
  }

  .tech-page .s2-card .card-meta {
    font-size: 10px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .tech-page .s2-card .card-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .tech-page .s2-card .card-icon {
    width: 42px;
    height: 42px;
  }

  .tech-page .s2-card .card-title {
    font-size: 14px;
    line-height: 1.2;
  }

  .tech-page .s2-card .feature-title {
    font-size: 12px;
  }

  .tech-page .s2-card .feature-desc {
    font-size: 13px;
  }

  /* Override pixel-perfect placement rules on mobile */
  .tech-page .card-shield,
  .tech-page .card-network,
  .tech-page .card-soar,
  .tech-page .card-siem {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .tech-page .s2-center-icon {
    position: static;
    transform: none;
    margin: 10px auto 0;
    gap: 10px;
  }

  .tech-page .icon-frame {
    width: 54px;
    height: 54px;
  }

  .tech-page .icon-label {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.6px;
  }
  .tech-page .s3-intro {
    font-size: clamp(18px, 4.2vw, 28px);
    line-height: 1.55;
    letter-spacing: -0.03em;
    padding: 40px 20px 0;
  }
  .tech-page .s3-ops {
    padding: 22px 20px 40px;
    flex-direction: column;
    gap: 14px;
  }

  .tech-page .s3-ops-left,
  .tech-page .s3-ops-right {
    flex: none;
    min-width: 0;
    width: 100%;
  }
  .tech-page .s3-ops-heading {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.1;
  }
  .tech-page .s3-ops-desc {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 18px;
    max-width: none;
  }

  .tech-page .s3-ops-item {
    font-size: 16px;
    line-height: 22px;
    padding: 12px 0 10px;
  }
  .tech-page .s3-ops-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    max-width: 100%;
  }
  .tech-page .s3-ops-cell {
    max-width: none;
  }
  .tech-page .bottom-text {
    font-size: clamp(20px, 4.5vw, 32px);
    letter-spacing: -0.04em;
    padding: 0 20px 40px;
  }
  .architecture-container {
    padding: 0 20px 40px;
  }
  .layer-section {
    flex-direction: column;
    align-items: stretch;
  }
  .layer-label-hd {
    width: 100%;
    max-width: none;
    margin: 0 0 12px;
  }
  .layer-content {
    padding: 28px 20px 32px;
  }
  .layer-content-inner {
    gap: 24px;
  }
  .arch-stack {
    max-width: none;
    min-width: 0;
    flex: 1 1 100%;
  }
}

