.container.nexus-flush {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
:root {
  --section-padding: 0 60px;
  --section-bg: transparent;
  --section-radius: 18px;
  --header-height: 76px; /* adjust if your header is taller/shorter */
}

body, html {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  text-align: center;
}

* {
  font-family: inherit !important;
  text-align: inherit;
}

h1, h2, h3, h4, h5, h6, p, span, li, .text, .text-small, .text-emphasis, .emphasis-big, .emphasis-small, .note {
  /* text-align: center !important; */
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
}

.bold, .text-emphasis, .emphasis-big, .emphasis-small {
  font-weight: 600 !important;
}

.regular, .text, .text-small, .note {
  font-weight: 400 !important;
}

/* Text color styles */
.nexus-dark {
  color: #545454;
  font-weight: 400;
}

.nexus-light {
  color: #bababa;
  font-weight: 400;
}

.nexus-bold-dark {
  color: #1C1C1C;
  font-weight: 700;
}

.nexus-bold {
  color: #1C1C1C;
  font-weight: 700;
}

.nexus-subdued {
  color: #BABABA;
  font-weight: 400;
}

.nexus-strong-highlight {
  color: #B28FCE;
  font-weight: 700;
}

/* Container and Main consistent with 'main' page */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

/* Footer, header, main page have matching paddings, align left */
.project-main-fullpage, .footer, .header {
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1001;
  min-height: 76px;
  height: 76px;
  display: flex;
  align-items: center;
}

/* .container is as before, used globally, and handles all max-width, and padding.
   Responsive rules already cascade for all .container uses (footer, main, header-inner, etc). */

.header-inner {
  /* This is a .container, so inherits all the padding/max-width! */
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: center;
}

/* Responsive padding for header-inner */
@media (max-width: 1200px) {
  .header-inner { padding-left: 30px; padding-right: 30px; }
}
@media (max-width: 768px) {
  .header-inner { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .header-inner { padding-left: 10px; padding-right: 10px; }
  .header { height: 70px; min-height: 70px; }
}

/* Remove redundant header padding rules - they're now in header-inner */


.project-title {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 730px;
}

.project-subtitle {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 24px;
  color: #bababa;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 650px;
  text-align: center;
}

@media (max-width: 768px) {
  .project-title { font-size: 32px; }
  .project-subtitle { font-size: 18px;}
}

/* Full viewport sections, vertical flex, all left aligned, max-width same as main */
.project-section {
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  margin: 120px 0 120px 0;
  background: var(--section-bg);
  border-radius: var(--section-radius);
  /* box-shadow: 0 10px 22px 0 rgba(60,60,99,0.07); */
  transition: filter 0.45s cubic-bezier(.5,0,.5,1), opacity 0.45s cubic-bezier(.61,.03,.29,.98);
  opacity: 0.47;
  filter: blur(6px) grayscale(.04);
  pointer-events: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

.project-section.in-focus,
.project-section:focus-within {
  opacity: 1;
  filter: blur();

  z-index: 2;
}

/* Sticky section title */
.project-section h2 {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header-height));
  background: rgba(255,255,255,0.1);
  z-index: 10;
  padding: 14px 0 8px 0;
  margin-bottom: 60px;
  font-size: 24px;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  color: #454545;
  font-weight: 700;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 992px) {
  .project-section h2 {
    top: calc(var(--header-height) + 12px);
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .project-section h2 {
    top: calc(var(--header-height) + 2px);
    font-size: 18px;
  }
}

.project-section h3 {
  background: rgba(255,255,255,0.1);
  z-index: 10;
  padding: 14px 0 8px 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  color: #bababa;
  font-weight: 400;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.project-section p,
.project-section ul,
.project-section ol {
  color: var(--color-text, #1C1C1C);
  font-size: 16px;
  font-family: var(--font-inter, 'Inter', 'Montserrat', 'Montserrat Alternates');
  text-align: left;
  margin: 0 0 20px 0;
  max-width: 730px;
  width: 100%;
}

.project-section ul,
.project-section ol {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 16px 18px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  list-style-position: inside;
}

.section-image {
  display: block;
  margin: 32px 0 0 0;
  width: 100%;
  max-width: 540px;
  border-radius: 14px;
  box-shadow: 0 2px 24px #8686861c;
  object-fit: contain;
  /* left align */
}

.features {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 38px;
}

.feature {
  width: 100%;
  max-width: 670px;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer {
  padding-top: 88px;
  padding-bottom: 24px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Responsive tweaks as before */
@media (max-width: 1200px) {
  .section-image { max-width: 98vw;}
  .features,.feature { max-width: 98vw;}
  .footer { flex-direction: column; gap: 20px; align-items: flex-start;}
}
@media (max-width: 768px) {
  .section-image { max-width: 100vw;}
  .project-title, .project-subtitle { max-width: 98vw;}
  .project-section { margin-bottom: 200px;}
}
@media (max-width: 480px) {
  .project-title { font-size: 21px;}
  .project-section { margin-bottom: 200px;}
}

/* NEXUS HERO SECTION (restored, image support) */
.nexus-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  height: 70dvh;
  width: 100%;
  padding: 0;
  margin: 120px auto 120px auto;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.nexus-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

.nexus-hero-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
  /* Add white transitions at top and bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  background: white;
  transition: box-shadow 0.25s;
}

.nexus-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(255,255,255,0.9);
  z-index: 2;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}

/* content always above video */
.nexus-hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 0;
  color: #454545;
  font-family: 'Satoshi Variable', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 32px;
  font-style: medium;
  font-weight: 500;
  line-height: normal;
  max-width: 1200px;
  width: 100%;
  min-height: 0;
  text-align: center;
}

.nexus-hero-content a {
  position: relative;
  z-index: 30;
  pointer-events: auto;
  cursor: pointer;
}

.nexus-hero-title {
  position: relative;
  z-index: 25;
  text-align: left;
  font-size: 40px;
  font-weight: 400;
  color: inherit;
  max-width: 800px;
  line-height: 1.4;
  background: none;
  display: inline-block;
  margin-bottom: 24px;
}

.nexus-hero-title a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  position: relative;
  z-index: 100;
}

.nexus-hero-title a:hover {
  opacity: 0.8;
}

.nexus-bold-dark {
  font-weight: 700;
  color: #545454;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.nexus-bold {
  font-weight: 700;
  color: #BABABA;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.nexus-subdued {
  color: #bababa;
  font-weight: 400;
  font-family: inherit;
}
.nexus-strong-highlight {
  color: #545454;
  font-weight: 400;
  font-family: inherit;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .nexus-hero-title,
  .nexus-bold-dark,
  .nexus-subdued,
  .nexus-strong-highlight {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .nexus-hero-title,
  .nexus-bold-dark,
  .nexus-subdued,
  .nexus-strong-highlight {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .nexus-hero-title,
  .nexus-bold-dark,
  .nexus-subdued,
  .nexus-strong-highlight {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}

/* === TEXT STYLE UTILITIES === */
.text {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 24px;
  color: #bababa;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.text-small {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 16px;
  color: #545454;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.text-emphasis {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 24px;
  color: #545454;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.emphasis-big {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 96px;
  color: #545454;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.emphasis-big .text,
.emphasis-big .note {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.emphasis-small {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 16px;
  color: #bababa;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.note {
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  font-size: 12px;
  color: #bababa;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}

#preview-video {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin: 0 auto 120px auto;
  padding: 0;
  border: none;
  background: #fff;
  box-shadow: none;
}

#preview-video .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  border: none;
  box-shadow: none;
  background: #fff;
}

#preview-video .preview-video {
  position: relative;
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: none;
  box-shadow: none;
}

#preview-video video.preview-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border: none;
  box-shadow: none;
  outline: none;
}

#preview-video .nexus-hero-overlay {
  display: none;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#preview-video::before,
#preview-video::after {
  display: none;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Section margin coordination */
.project-section {
  margin: 0 0 200px 0;
}

#preview-video.project-section {
  margin-bottom: 200px;
}

.digital-nomads-stats-section {
  margin: 120px auto 120px auto;
}

/* Digital Nomads Section Styles */
.digital-nomads-section {
  width: 100%;
  padding: 80px 0;
}

.digital-nomads-content {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: left;
}

.digital-nomads-title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 400;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .digital-nomads-content {
    margin-bottom: 32px;
  }
  
  .digital-nomads-title {
    font-size: 16px;
    line-height: 1.4;
  }
}

.digital-nomads-stats-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0; /* gap handled by children */
  width: 100%;
  max-width: 1286px;
  margin: 240px auto;
}

.stats-flex-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  width: 100%;
  align-items: center;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
  text-align: center;
}

.stats-label {
  font-weight: 400;
  line-height: 1.4;
  font-size: 18px;
  margin: 0;
  padding: 0;
  text-align: center;
}

.stats-note-ref {
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-align: center;
}

.stats-footnote {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  margin-top: 24px;
  color: #666;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.digital-nomads-video,
.digital-nomads-video .preview-video {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.digital-nomads-video video.preview-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.digital-nomads-subtitle {
  text-align: left;
  width: 100%;
  margin-bottom: 24px;
  font-size: 24px;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates' !important;
  color: #bababa;
  font-weight: 400;
}

.pain-point-highlight {
  font-weight: 700;
  color: #545454;
}

.painpoint {
  display: flex;
  flex-direction: column;
  gap: 200px; /* spacing between painpoint blocks */
  width: 100%;
}

.painpoint-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
  margin-bottom: 200px;
}

.painpoint-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.painpoint-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  min-width: 0;
}

.painpoint-col-left-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  min-width: 0;
}

.painpoint-col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  min-width: 0;
}

.painpoint-col-right-title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  min-width: 0;
}

.painpoint-subtitle {
  color: var(--Black-quaternary, #BABABA);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.painpoint-subtitle-strong {
  color: var(--Black-Secondary, #454545);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.painpoint-question {
  color: var(--Black-Primary, #1C1C1C);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.painpoint-answer {
  color: var(--Black-quaternary, #BABABA);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.painpoint-answer-emphasis {
  color: var(--Black-quaternary, #1C1C1C);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.painpoint-figure {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.painpoint-figure-left {
  color: var(--Black-Secondary, #454545);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 256px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
  text-align: left; 
}

.painpoint-figure-right {
  color: var(--Black-quaternary, #BABABA);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
  text-align: left;
}

.painpoint-figure-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.painpoint-figure-img-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.painpoint-insight-text {
  color: var(--Black-quaternary, #BABABA);
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

/* Solution image sizing */
.solution-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Design Thinking block */
.design-thinking-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 160px;
  width: 100%;
}

.design-thinking-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 70%;
}

.design-thinking-lead .nexus-subtitle,
.design-thinking-lead .painpoint-subtitle-strong {
  width: 100%;
  display: block;
}

.design-thinking-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Two-column lead layout */
.lead-two-col {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  max-width: 100%;
}

.lead-two-col .lead-copy {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-two-col .lead-image {
  flex: 1;
  max-width: 50%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .lead-two-col {
    flex-direction: column;
    max-width: 100%;
  }
  
  .lead-two-col .lead-copy,
  .lead-two-col .lead-image {
    max-width: 100%;
  }
}

/* Full-bleed sections without side padding */
.full-bleed .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.design-thinking-item-title {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  color: #BABABA;
}

.design-thinking-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.nexus-overview-pair {
  padding: 120px 0;
}

.nexus-overview-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
}

.nexus-overview-left {
  display: flex;
  width: 50%;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  gap: 20px;
}

.nexus-overview-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #000;
  background: #FFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.nexus-overview-name {
  color: #454545;
  text-align: center;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.nexus-overview-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  width: 50%;
}

.nexus-overview-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nexus-overview-label {
  color: #818181;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nexus-overview-value {
  color: #000;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 992px) {
  .nexus-overview-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .nexus-overview-left {
    width: 100%;
  }
  .nexus-overview-pair {
    padding: 80px 0;
  }
}

/* User group row below Context and Problem */
.nexus-user-group {
  display: flex;
  width: 100%;
  max-width: 1440px;
  align-items: flex-start;
  gap: 32px;
  margin: 32px 0 120px 0; /* 120px gap before the next section (painpoints) */
}

.nexus-subtitle {
  color: var(--Black-quaternary, #BABABA);
  text-align: left;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 50%;
  flex: 1 1 0;
}

.nexus-user-group-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #000;
  font-family: 'Satoshi Variable', 'Satoshi', 'Inter', 'Montserrat', 'Montserrat Alternates';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex: 1 1 0;
  width: 50%;
}

.nexus-ug-normal {
  display: block;
  text-align: left;
}

.nexus-ug-emphasis {
  color: #9b9b9b;
}

@media (max-width: 768px) {
  .nexus-user-group {
    flex-direction: column;
    max-width: 100%;
    gap: 16px;
  }
  .nexus-user-group-label {
    width: 100%;
    text-align: left;
  }
  .nexus-user-group-body {
    font-size: 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nexus-user-group-body {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .nexus-overview-name {
    font-size: 32px;
  }
  .nexus-overview-logo {
    width: 52px;
    height: 52px;
  }
  .nexus-overview-row {
    gap: 32px;
  }
}

.painpoint .text + img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 24px 0 0 0;
  object-fit: contain;
}

/* Painpoint Section Styles */
#painpoint {
  width: 100%;
  padding: 0;
}

#painpoint .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

#painpoint h2 {
  margin-bottom: 60px;
}

.painpoint {
  display: flex;
  flex-direction: column;
  gap: 480px; /* Large gap between subsections */
  width: 100%;
}

.painpoint > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  gap: 120px; /* Gap between main sections */
}

.painpoint h3 {
  text-align: center;
  margin: 0;
  width: 100%;
}

.painpoint > div > img[src*="pp-1.png"]{
  width: 100%;
  max-width: 420px !important;
  height: auto;
  margin: -120px 0 0px 0;
  object-fit: contain;
}

.painpoint > div > img:not([src*="pp-1.png"]) {
  width: 100%;
  max-width: 900px !important;
  height: auto;
  margin: -120px 0 0px 0;
  object-fit: contain;
}

.painpoint > div > img[src*="pp-3-detail.png"] {
  width: 150%;
  max-width: 100% !important;
  height: auto;
  margin: -120px 0 0px 0;
}

.painpoint .emphasis-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  width: 100%;
}

.painpoint .emphasis-big .text,
.painpoint .emphasis-big .note {
  text-align: left;
}

.painpoint .text-emphasis {
  text-align: left;
  max-width: 800px;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #painpoint .container {
    padding: 0 20px;
  }
  
  .painpoint {
    gap: 120px; /* Smaller gap on mobile */
  }
}

.project-section.in-focus {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
}

.project-section:not(.in-focus) {
  pointer-events: none;
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .stats-label {
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }
  
  .emphasis-big {
    font-size: 48px;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .stats-footnote {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 16px;
  }
}

/* Focus section styles */
.focus-section {
  transition: filter 0.45s cubic-bezier(.5,0,.5,1), opacity 0.45s cubic-bezier(.61,.03,.29,.98);
  opacity: 0.47;
  filter: blur(6px) grayscale(.04);
  pointer-events: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

.focus-section.in-focus,
.focus-section:focus-within {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
}
