.hero {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 325px;
}

.heroCopy {
  padding: 38px 22px 28px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heroKicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 74px;
  line-height: .9;
  margin: 12px 0 14px;
  font-weight: 500;
}

.hero h2 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 12px;
  max-width: 470px;
}

.hero p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}

.heroBtns {
  display: flex;
  gap: 10px;
}

.heroVisual {
  position: relative;
  min-height: 420px;
}

.heroCollage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
}

.h-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.h-img:hover {
  transform: scale(1.02);
  z-index: 10 !important;
}

.h-city {
  grid-column: 1 / 8;
  grid-row: 1 / 11;
  z-index: 1;
}

.h-person {
  grid-column: 7 / 13;
  grid-row: 2 / 10;
  z-index: 2;
}

.h-arch {
  grid-column: 2 / 7;
  grid-row: 6 / 13;
  z-index: 3;
}

.h-obj {
  grid-column: 6 / 11;
  grid-row: 8 / 13;
  z-index: 4;
}

.h-det {
  grid-column: 9 / 13;
  grid-row: 1 / 6;
  z-index: 1;
}

.heroBadge {
  position: absolute;
  right: 22px;
  top: 25px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246,241,232,.78);
  font-family: var(--serif);
  font-size: 31px;
}

.intentBar {
  margin-top: 10px;
  background: #ece6d9;
  border: 1px solid #e2dacd;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 33% 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
}

.intentText h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 2px;
  font-weight: 500;
}

.intentText small {
  color: #9a8f80;
}

.intentRight {
  display: grid;
  gap: 10px;
}

.intentSearch {
  display: flex;
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  overflow: hidden;
}

.intentSearch input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 11px 14px;
  font-size: 13px;
}

.intentSearch button {
  border: 0;
  background: #151513;
  color: #fff;
  padding: 0 18px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid #d8d0c5;
  border-radius: 999px;
  background: #fff;
}

.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 16px 0 24px;
}

.category {
  display: grid;
  grid-template-columns: 66px 1fr 22px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  min-height: 64px;
  border-radius: 8px;
  overflow: hidden;
}

.category img {
  width: 66px;
  height: 64px;
  object-fit: cover;
}

.categoryText {
  padding: 10px 14px;
}

.categoryTitle {
  font-family: var(--serif);
  font-size: 19px;
}

.categorySub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.2;
}

.arrow {
  text-align: center;
}

.sectionHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sectionHead h3 {
  font-size: 18px;
  margin: 0;
}

.sectionHead a {
  font-size: 11px;
  color: #4e4a43;
}

.sample {
  font-size: 9px;
  color: #a75c00;
  background: #ffe0b7;
  border-radius: 3px;
  padding: 3px 5px;
  margin-left: 8px;
  font-weight: 700;
}

.featureStoryGrid {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 14px;
}

.featuredGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.featureCard {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.featureCard img {
  width: 100%;
  aspect-ratio: 1.1/1;
  object-fit: cover;
  display: block;
}

.featureBody {
  padding: 10px;
}

.featureMeta {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 6px;
}

.featureTitle {
  font-size: 12px;
  font-weight: 700;
}

.featureDesc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 6px;
}

.storyWrap {
  display: grid;
  grid-template-columns: 68% 32%;
  gap: 10px;
}

.storyMain {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #e9e1d5;
  min-height: 192px;
}

.storyMain img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storyOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246,241,232,.96), rgba(246,241,232,.88) 44%, rgba(246,241,232,.05) 72%);
}

.storyCopy {
  position: relative;
  padding: 22px;
  width: 58%;
}

.storyCopy h4 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.03;
  margin: 0 0 8px;
  font-weight: 500;
}

.storyCopy p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.storySide {
  display: grid;
  gap: 10px;
}

.storySmall {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  align-items: center;
}

.storySmall img {
  width: 90px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px;
}

.storySmall .label {
  font-size: 8px;
  color: #7c766d;
  text-transform: uppercase;
}

.storySmall h5 {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.1;
  margin: 6px 0 8px;
  font-weight: 500;
}

.communityCities {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 28px;
  margin-top: 16px;
}

.creatorHead, .cityHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.creatorHead h3, .cityHead h3 {
  margin: 0;
  font-size: 18px;
}

.tagRow {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.tagMini {
  font-size: 9px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.tagMini.active {
  background: #151513;
  color: #fff;
}

.creatorGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.creator {
  padding: 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.creator:last-child {
  border-right: 0;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background: linear-gradient(145deg, #d8d2c8, #8f8a82);
}

.creator b {
  display: block;
  font-size: 10px;
}

.creator span {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-top: 2px;
}

.cityGrid {
  display: flex;
  gap: 8px;
  height: 111px;
}

.cityCard {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

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

.cityOverlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
}

.ctaStrip {
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2f3122;
  min-height: 142px;
  background: #24261c;
  position: relative;
}

.ctaStrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.ctaShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,15,12,.82), rgba(15,15,12,.34), rgba(32,37,20,.75));
}

.ctaContent {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 142px;
  color: white;
}

.ctaCol {
  padding: 30px 32px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.ctaCol:last-child {
  border-right: 0;
}

.ctaCol small {
  opacity: .7;
  font-size: 10px;
}

.ctaCol h4 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  margin: 10px 0;
}

.ctaCol p {
  font-size: 11px;
  opacity: .74;
  max-width: 260px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .heroVisual {
    min-height: 300px;
  }
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .featureStoryGrid, .communityCities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 56px;
  }
  .hero h2 {
    font-size: 23px;
  }
  .intentBar {
    grid-template-columns: 1fr;
  }
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .featuredGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creatorGrid {
    grid-template-columns: 1fr 1fr;
  }
  .storyWrap {
    grid-template-columns: 1fr;
  }
  .ctaContent {
    grid-template-columns: 1fr;
  }
}

/* New Homepage Layout Additions */

.exploreWorlds {
  padding: 60px 40px;
  background: var(--bg);
}

.worldGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.worldCard {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.worldCard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.worldCard:hover img {
  transform: scale(1.05);
}

.worldContent {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.worldContent h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
}

.worldContent p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
  flex: 1;
}

.worldCTA {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.worldCTA:hover {
  text-decoration: underline;
}

/* Explore Cities */
.exploreCities {
  padding: 60px 40px;
  background: #fff;
}

.cityTraits {
  font-size: 11px;
  letter-spacing: .05em;
  opacity: 0.8;
  margin-top: 8px;
}

/* Preview Grids */
.travelPreview, .emergingBrands, .newChinaPreview, .culturePreview, .creatorsPreview {
  padding: 60px 40px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .worldGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================================================================
   EDITORIAL DENSITY REBALANCE
   ========================================================================= */

/* Unified Editorial Container */
.editorial-container > .sectionHead,
.editorial-container > .mixed-world-grid,
.editorial-container > .city-strip,
.editorial-container > .travel-editorial,
.editorial-container > .brand-strip,
.editorial-container > .trend-signals,
.editorial-container > .culture-composition,
.editorial-container > .people-mix,
.editorial-container > .collaboration-layer,
.editorial-container > div[style*="text-align:center"] {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

/* Backgrounds */
.bg-muted { background: var(--bg); }

/* Spacing Rhythm */
.section-compact { padding: 40px 40px; }
.section-normal { padding: 56px 40px; }

@media (max-width: 768px) {
    .section-compact { padding: 32px 20px; }
    .section-normal { padding: 40px 20px; }
}

/* Typography Overrides for Sections */
.sectionHead h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.sectionHead p {
    font-size: 14px;
    max-width: 600px;
}
.featureMeta {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: 12px;
}

/* 1. Explore Worlds Mixed Grid */
.mixed-world-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 32px;
}
.worldCard {
    background: #fff;
    display: flex;
    flex-direction: column;
}
.worldCard img {
    width: 100%;
    object-fit: cover;
}
.large-world {
    grid-column: span 2;
}
.large-world img {
    height: 180px;
}
.small-world {
    grid-column: span 1;
}
.small-world img {
    height: 120px;
}
.worldContent {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.large-world .worldContent h4 { font-size: 20px; margin-bottom: 6px; font-family: var(--serif); }
.small-world .worldContent h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--serif); }
.worldContent p { font-size: 12px; margin-bottom: 12px; flex: 1; }
.worldCTA { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); text-decoration: none; font-weight: 500; }
.worldCTA:hover { text-decoration: underline; }

/* 2. City Strip */
.city-strip {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.cityStripCard {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: block;
    color: #fff;
}
.cityStripCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cityStripCard:hover img {
    transform: scale(1.05);
}
.cityOverlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.cityOverlay h4 { font-size: 22px; margin: 0; font-family: var(--serif); }

/* 3. Travel Editorial */
.travel-editorial {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.travel-anchor img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.travel-anchor h4 { font-size: 24px; font-family: var(--serif); margin: 4px 0 8px; }
.travel-anchor p { font-size: 14px; color: var(--muted); }
.travel-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.travel-compact {
    display: flex;
    gap: 16px;
}
.travel-compact img {
    width: 120px;
    height: 90px;
    object-fit: cover;
}
.travel-compact h5 { font-size: 16px; font-family: var(--serif); margin: 4px 0; }
.travel-compact p { font-size: 12px; color: var(--muted); }

/* 4. Brand Strip */
.brand-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.brand-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.brand-item h5 { font-size: 16px; font-family: var(--serif); margin: 4px 0 6px; }
.brand-item p { font-size: 13px; color: var(--muted); }

/* 5. Trend Signals */
.trend-signals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
.trend-medium img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.trend-medium h4 { font-size: 22px; font-family: var(--serif); margin: 4px 0 8px; }
.trend-medium p { font-size: 14px; color: var(--muted); }
.trend-compact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}
.trend-compact h5 { font-size: 18px; font-family: var(--serif); margin: 4px 0 6px; }
.trend-compact p { font-size: 13px; color: var(--muted); }

/* 6. Culture Composition */
.culture-composition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
    align-items: center;
}
.culture-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.culture-text-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.culture-item h5 { font-size: 20px; font-family: var(--serif); margin: 4px 0 8px; }
.culture-item p { font-size: 14px; color: var(--muted); }

/* 7. People Mix */
.people-mix {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
.people-medium img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.people-medium h4 { font-size: 22px; font-family: var(--serif); margin: 4px 0 8px; }
.people-medium p { font-size: 14px; color: var(--muted); }
.people-snippets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.people-compact {
    display: flex;
    gap: 16px;
    align-items: center;
}
.people-compact img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.people-compact h5 { font-size: 15px; font-family: var(--serif); margin: 4px 0 0; }

/* 8. Collaboration Layer */
.collaboration-layer {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 40px 0;
}
.collab-header {
    text-align: center;
    margin-bottom: 40px;
}
.collab-header h3 { font-size: 28px; font-family: var(--serif); margin: 0 0 12px; }
.collab-header p { font-size: 15px; color: var(--muted); max-width: 600px; margin: 0 auto; }
.collab-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.role-card {
    padding: 24px;
    border: 1px solid #eaeaea;
    background: #fafafa;
}
.role-badge { font-size: 10px; font-weight: bold; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.role-card h4 { font-size: 18px; font-family: var(--serif); margin: 0 0 12px; }
.role-card p { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.role-link { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: bold; text-decoration: none; color: var(--primary); }

/* 9. Closing Statement */
.closing-statement {
    text-align: center;
    background: var(--bg);
}
.closing-statement h3 {
    font-size: 36px;
    font-family: var(--serif);
    margin: 0 0 16px;
}
.closing-statement p {
    font-size: 15px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .mixed-world-grid { grid-template-columns: repeat(2, 1fr); }
    .large-world { grid-column: span 1; }
    .city-strip { grid-template-columns: repeat(2, 1fr); }
    .travel-editorial { grid-template-columns: 1fr; }
    .travel-anchor img { height: 200px; }
    .brand-strip { grid-template-columns: repeat(2, 1fr); }
    .trend-signals { grid-template-columns: 1fr; }
    .trend-medium img { height: 200px; }
    .culture-composition { grid-template-columns: 1fr; }
    .culture-image img { height: 200px; }
    .people-mix { grid-template-columns: 1fr; }
    .people-medium img { height: 200px; }
    .collab-roles { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
    .mixed-world-grid { grid-template-columns: 1fr; }
    .city-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -20px; padding-right: 20px; }
    .cityStripCard { flex: 0 0 85%; scroll-snap-align: start; }
    .brand-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -20px; padding-right: 20px; }
    .brand-item { flex: 0 0 75%; scroll-snap-align: start; }
    .travel-compact img { width: 90px; height: 70px; }
    .closing-statement h3 { font-size: 28px; }
}

/* =========================================================================
   INTEGRATED DISCOVERY SURFACE (v1.5)
   ========================================================================= */

/* Demo Badge Component */
.demo-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid currentColor;
}
.demo-sample, .demo-preview, .demo-mapping, .demo-building {
    /* Editorial annotation style */
    color: var(--muted);
    background: transparent;
    border: 1px solid #d0d0d0;
    font-weight: 500;
}

/* Hero Modifications */
.integrated-hero {
    position: relative;
    padding-bottom: 80px;
}
.hero-intent {
    margin-top: 30px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 500px;
}
.hero-intent .intentSearch {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.hero-intent input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    font-family: var(--sans);
}
.hero-intent button {
    background: #111;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
.hero-intent .chips {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.chip-label { font-size: 10px; color: #999; text-transform: uppercase; }
.hero-intent .chip {
    font-size: 11px;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
    color: #333;
}

/* Floating Nusupa Now Widget */
.nusupa-now-widget {
    position: absolute;
    top: 60px;
    right: -40px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 10;
}
.now-header h4 { font-family: var(--serif); font-size: 18px; margin: 0 0 4px; }
.now-header p { font-size: 12px; color: var(--muted); margin: 0 0 20px; }
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 500;
}
.now-footer { margin-top: 16px; text-align: right; }
.now-footer a { font-size: 11px; color: var(--primary); text-decoration: none; font-weight: bold; }

/* Integrated Surface Layout (CSS Grid areas) */
.integrated-surface {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-areas:
        "worlds cities signals"
        "people opps   connect";
    gap: 24px;
    padding: 40px;
    margin-top: -40px; /* pull up slightly */
    position: relative;
    z-index: 2;
    background: #fdfbf7; /* ivory brand feel */
    align-items: start;
}

/* Base module styles */
.surf-module {
    /* Removed uniform white background and shadow to allow varied editorial presentation */
    padding: 24px;
    align-self: start;
}
.module-worlds { background: transparent; padding: 0; }
.module-cities { background: #fff; border: 1px solid #eaeaea; }
.module-signals { background: transparent; padding: 0; border-top: 1px solid #111; border-radius: 0; padding-top: 24px; }
.module-people { background: #f5f4f0; border-radius: 0; padding-bottom: 24px; }
.module-opps { background: #fff; border-top: 2px solid #eaeaea; border-radius: 0; padding: 24px 0 0; }
.module-connects { background: transparent; padding: 0; }

.surf-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}
.surf-head h4 { font-family: var(--serif); font-size: 18px; margin: 0; }
.surf-head a { font-size: 11px; color: var(--primary); text-decoration: none; }

/* A. Explore by World */
.module-worlds { grid-area: worlds; }
.world-mixed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 140px 100px;
    gap: 12px;
}
.w-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
}
.w-card img { width: 100%; height: 100%; object-fit: cover; }
.w-overlay {
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    padding: 16px;
    display: flex;
    align-items: flex-end;
}
.w-overlay h5 { margin: 0; font-family: var(--serif); font-size: 16px; }
.w-large { grid-column: span 2; }
.w-small { grid-column: span 1; }
.w-small .w-overlay h5 { font-size: 13px; }

/* B. Cities at a Glance */
.module-cities { grid-area: cities; }
.city-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.c-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    height: 100px;
}
.c-card img { width: 100%; height: 100%; object-fit: cover; }
.c-card h5 { position: absolute; top: 12px; left: 12px; margin: 0; font-family: var(--serif); font-size: 14px; z-index: 2; }
.c-card p { position: absolute; bottom: 12px; left: 12px; margin: 0; font-size: 9px; line-height: 1.3; opacity: 0.9; z-index: 2; }
.c-card::after { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.4); }
.disabled-card { filter: grayscale(100%); opacity: 0.7; }
.city-network-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 11px;
}
.net-left p { margin: 4px 0 0; color: var(--muted); }
.net-dots span { display: inline-block; margin-right: 6px; color: #999; }

/* C. Signals */
.module-signals { grid-area: signals; }
.signals-main { position: relative; border-radius: 6px; overflow: hidden; height: 120px; color: #fff; margin-bottom: 16px; }
.signals-main img { width: 100%; height: 100%; object-fit: cover; }
.sig-overlay { position: absolute; bottom: 0; left: 0; padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); width: 100%; }
.sig-overlay h5 { margin: 0 0 4px; font-family: var(--serif); font-size: 16px; }
.sig-overlay p { margin: 0; font-size: 11px; opacity: 0.9; }
.sig-item { display: flex; gap: 12px; margin-bottom: 16px; }
.sig-item .icon { font-size: 20px; background: #f5f5f5; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.sig-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.sig-item p { margin: 0; font-size: 11px; color: var(--muted); }

/* D. People */
.module-people { grid-area: people; }
.people-row { display: flex; justify-content: space-between; text-align: center; margin-bottom: 0; }
.p-item img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.p-item strong { display: block; font-family: var(--serif); font-size: 15px; margin-bottom: 4px; }
.p-item p { margin: 0; font-size: 10px; color: var(--muted); line-height: 1.3; }
.people-footer { font-size: 11px; color: var(--muted); border-top: 1px solid #f0f0f0; padding-top: 12px; }

/* E. Opportunities */
.module-opps { grid-area: opps; }
.opps-list { display: flex; flex-direction: column; gap: 16px; }
.opp-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f0f0f0; padding-bottom: 16px; }
.opp-item:last-child { border: none; padding-bottom: 0; }
.opp-info strong { display: block; font-size: 13px; margin-bottom: 4px; }
.opp-info p { margin: 0; font-size: 11px; color: var(--muted); }
.opp-meta { display: flex; align-items: center; gap: 12px; }
.opp-meta .location { font-size: 11px; color: #999; }

/* F. Connects */
.module-connects { grid-area: connect; }
.connect-list { display: flex; flex-direction: column; gap: 16px; }
.conn-item { display: flex; gap: 12px; align-items: center; }
.conn-item .icon { font-size: 18px; }
.conn-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.conn-item p { margin: 0; font-size: 11px; color: var(--muted); }

/* Deep Dive Exploration Band */
.deep-dive-band { padding: 60px 40px; background: #fff; border-top: 1px solid #eaeaea; }
.band-head h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 24px; }
.band-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none; /* Firefox */
}
.band-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.band-card {
    flex: 1 1 0;
    min-width: 200px;
    height: 160px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    display: block;
}
.band-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.band-card:hover img { transform: scale(1.05); }
.b-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.b-overlay h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 18px; }
.b-overlay p { margin: 0; font-size: 12px; opacity: 0.9; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .integrated-surface {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "worlds worlds"
            "cities signals"
            "opps opps"
            "people connect";
    }
    .nusupa-now-widget {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .heroVisual { display: flex; flex-direction: column; }
    .nusupa-now-widget { position: relative; top: 0; right: 0; width: 100%; margin-top: 20px; box-shadow: none; border: 1px solid #eaeaea; }
    
    .integrated-surface {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin-top: 0;
    }
    .world-mixed-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
    .w-large { grid-column: span 2; }
    .w-small { grid-column: span 1; }
    
    .city-compact-grid { grid-template-columns: 1fr; }
    .people-row { overflow-x: auto; padding-bottom: 10px; justify-content: flex-start; gap: 20px; }
    .opp-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    
    .band-card { flex: 0 0 85%; }
}

/* =========================================================================
   VISUAL POLISH (Mobile & Fixes)
   ========================================================================= */

@media (max-width: 768px) {
    /* Mobile Hero Collage: Hide all except first 2 images */
    .h-arch, .h-obj, .h-det {
        display: none !important;
    }
    
    /* Mobile Nusupa Now: Compact pulse strip */
    .nusupa-now-widget {
        display: flex;
        flex-wrap: wrap;
        padding: 12px;
        align-items: center;
        gap: 12px;
        background: transparent;
        border: none;
        border-top: 1px solid #eaeaea;
        margin-top: 12px;
    }
    .now-header {
        display: none; /* hide title on mobile for compactness */
    }
    .now-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }
    .stat-row {
        border: none;
        padding: 0;
        gap: 6px;
        font-size: 11px;
    }
    .now-footer {
        width: 100%;
        text-align: left;
        margin-top: 0;
    }
}
