@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #040507;
  --bg2: #080b0f;
  --bg-surface: #0e1218;
  --bg-surface-elevated: #141b24;
  --ink: #f5f3ec;
  --muted: #9ba0a8;
  --muted-dim: #5c626e;
  --gold: #d6a760;
  --gold-light: #f7e1b8;
  --gold-dark: #8e6837;
  --gold-glow: rgba(214, 167, 96, 0.4);
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(214, 167, 96, 0.28);
  --glass: rgba(14, 18, 24, 0.65);
  --glass-elevated: rgba(20, 27, 36, 0.85);
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(214, 167, 96, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: radial-gradient(circle at 65% 15%, #0f151c 0%, #080b0f 45%, #040507 80%, #020304 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

/* AMBIENT CURSOR SPOTLIGHT */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 167, 96, 0.09) 0%, rgba(214, 167, 96, 0) 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

/* GRAIN NOISE OVERLAY */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* TOPBAR NAVIGATION */
.topbar {
  height: 104px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 0 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(4, 5, 7, 0.95), rgba(4, 5, 7, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.topbar.scrolled {
  height: 76px;
  background: rgba(8, 11, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(214, 167, 96, 0.3);
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.nav a:hover, .nav a.active {
  color: var(--gold-light);
}

.nav a:hover::after, .nav a.active::after {
  width: 100%;
}

.topbar-cta {
  padding: 11px 26px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  background: rgba(214, 167, 96, 0.05);
}

.topbar-cta:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(214, 167, 96, 0.55);
  transform: translateY(-1px);
}

.menu {
  background: none;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  cursor: pointer;
  padding: 8px;
}

.menu span {
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 5, 7, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 38px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.close-drawer {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.close-drawer:hover {
  background: var(--gold);
  color: var(--bg);
}

.drawer-brand {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-shadow: 0 0 25px rgba(214, 167, 96, 0.4);
}

.drawer-brand span {
  color: #fff;
  font-size: 14px;
  display: block;
  letter-spacing: 0.3em;
  margin-top: 4px;
  text-align: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.drawer-nav a {
  font-size: 16px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.drawer-nav a:hover {
  color: var(--gold-light);
  transform: scale(1.08);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: grid;
  grid-template-columns: 32% 68%;
  padding-top: 104px;
  overflow: hidden;
}

.scroll-rail {
  position: absolute;
  left: 42px;
  top: 480px;
  height: 200px;
  width: 16px;
  z-index: 10;
}

.scroll-rail span {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  left: 0;
  top: 90px;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.scroll-rail i {
  position: absolute;
  left: 8px;
  top: 135px;
  height: 65px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-rail b {
  position: absolute;
  left: 2px;
  bottom: -6px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
}

.scroll-rail b::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero-copy {
  padding: 85px 30px 40px 105px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.8vw, 74px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 20px 0 24px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  background: linear-gradient(135deg, #FFF3D6 0%, #D6A760 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  filter: drop-shadow(0 0 25px rgba(214, 167, 96, 0.35));
}

.lede {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  max-width: 440px;
}

.hero-actions {
  margin-top: 40px;
}

.explore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 600;
  background: rgba(214, 167, 96, 0.06);
  transition: var(--transition);
}

.explore:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 35px rgba(214, 167, 96, 0.6);
  transform: translateY(-2px);
}

.explore .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.explore:hover .arrow {
  transform: translateX(4px);
}

.lede {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  letter-spacing: 0.04em;
  max-width: 480px;
}

.hero-actions {
  margin-top: 42px;
}

.explore {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 600;
  transition: var(--transition);
}

.play {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 11px;
  padding-left: 3px;
  color: var(--gold-light);
  transition: var(--transition);
  background: rgba(214, 167, 96, 0.06);
}

.explore:hover .play {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(214, 167, 96, 0.65);
  transform: scale(1.1);
}

.explore .line {
  width: 65px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 167, 96, 0.15));
  transition: width 0.3s ease;
}

.explore:hover .line {
  width: 90px;
}

/* FLOATING CITY TAGS IN HERO */
.float-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 20px 12px 18px;
  border-radius: 14px;
  background: rgba(10, 14, 19, 0.55);
  border: 1px solid rgba(247, 225, 184, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  animation-name: drift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  pointer-events: auto;
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.tag:hover, .tag:focus-visible {
  border-color: var(--gold);
  background: rgba(16, 22, 30, 0.9);
  box-shadow: 0 14px 40px -6px rgba(214, 167, 96, 0.55);
  animation-play-state: paused;
  transform: scale(1.05);
}

.tag .proj {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag .proj svg {
  opacity: 0.4;
  transform: translateX(-2px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tag:hover .proj svg {
  opacity: 1;
  transform: translateX(2px);
  color: var(--gold-light);
}

/* NETWORK CANVAS STAGE */
.network-stage {
  position: relative;
  min-height: 640px;
  height: 100%;
  overflow: hidden;
}

.network-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* CENTRAL GOLD BUILDING ARTWORK CONTAINER */
.hero-building-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.hero-building-img {
  max-width: 58%;
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(214, 167, 96, 0.5)) contrast(1.15) brightness(1.05);
  mix-blend-mode: screen;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}
/* MAP STAGE OVERLAY CARDS & HUD */
.map-brand-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.map-brand-badge .brand-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(214, 167, 96, 0.4);
}

.map-brand-badge .brand-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 3px;
}

.map-overlay-header {
  position: absolute;
  top: 20px;
  right: 95px;
  z-index: 15;
  pointer-events: none;
}

.map-title-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.map-subtitle {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-shadow: 0 0 16px rgba(214, 167, 96, 0.4);
}

.map-tagline {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 2px;
}

.map-compass {
  position: absolute;
  top: 15px;
  right: 24px;
  width: 60px;
  height: 60px;
  z-index: 15;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(214, 167, 96, 0.4));
}

.compass-svg {
  width: 100%;
  height: 100%;
}

.map-stats-card {
  position: absolute;
  top: 75px;
  left: 24px;
  z-index: 15;
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid rgba(247, 225, 184, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 195px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.stat-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(214, 167, 96, 0.08);
  border: 1px solid rgba(214, 167, 96, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-icon-box svg {
  width: 17px;
  height: 17px;
}

.stat-text-wrap {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 12px rgba(214, 167, 96, 0.35);
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.25;
}

.map-capabilities-card {
  position: absolute;
  bottom: 60px;
  right: 24px;
  z-index: 15;
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid rgba(247, 225, 184, 0.22);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.85);
  width: 225px;
}

.cap-heading {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-gold);
}

.map-capabilities-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-capabilities-card li {
  font-size: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-capabilities-card li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.map-legend-card {
  position: absolute;
  bottom: 60px;
  left: 24px;
  z-index: 15;
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid rgba(247, 225, 184, 0.22);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.85);
  width: 195px;
}

.legend-heading {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.legend-row:last-child {
  margin-bottom: 0;
}

.pin-symbol {
  font-size: 11px;
}

.boundary-line {
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

/* 01-06 LOCATION BADGES MATCHING REFERENCE IMAGE & PERFECTLY ALIGNED */
.project-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 8px;
  background: rgba(10, 14, 20, 0.88);
  border: 1px solid rgba(247, 225, 184, 0.3);
  border-radius: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.85);
  z-index: 12;
  cursor: pointer;
  animation: floatNode 6s ease-in-out infinite;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-node:hover, .project-node:focus-visible {
  transform: scale(1.06) translateY(-3px) !important;
  border-color: var(--gold);
  background: rgba(16, 22, 30, 0.96);
  box-shadow: 0 18px 45px -6px rgba(214, 167, 96, 0.55);
}

.node-photo {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(214, 167, 96, 0.38);
  background: var(--bg);
}

.node-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.95) contrast(1.1);
}

.node-num {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: #080b0f;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 8.5px;
  padding: 1px 6px;
  line-height: 1;
  box-shadow: 0 0 10px rgba(214, 167, 96, 0.4);
}

.node-label strong {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
  color: #fff;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.node-label small {
  font-size: 9.5px;
  line-height: 1.3;
  color: var(--gold-light);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: block;
}

/* BADGE LOCATIONS CLEARING HUD CARDS PROPERLY */
.loc-b1 { left: 235px; top: 12%; }
.loc-b2 { left: 235px; top: 48%; transform: translateY(-50%); }
.loc-b3 { left: 235px; bottom: 12%; }

.loc-b4 { right: 260px; top: 12%; }
.loc-b5 { right: 260px; top: 48%; transform: translateY(-50%); }
.loc-b6 { right: 260px; bottom: 12%; }

/* HERO BOTTOM BAR */
.hero-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  z-index: 10;
}

.bar-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bar-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.2px;
  color: var(--gold-light);
}
@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* MARQUEE TICKER */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--bg2);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.marquee-track span b {
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold));
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION HEADINGS */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.head-desc {
  max-width: 380px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* SERVICES & DISCIPLINES */
.services-section {
  padding: 120px 8%;
  border-bottom: 1px solid var(--line);
}

/* PORTFOLIO SHOWCASE SECTION & FILTERS */
.projects-section {
  padding: 120px 8%;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 11px 24px;
  border-radius: 24px;
  border: 1px solid var(--line-gold);
  background: rgba(14, 18, 24, 0.6);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 25px rgba(214, 167, 96, 0.45);
  transform: translateY(-1px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pcard {
  position: relative;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, box-shadow 0.45s ease;
  scroll-margin-top: 140px;
  background: var(--bg-surface);
}

.pcard:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px -10px rgba(214, 167, 96, 0.35);
}

.pcard.flash {
  border-color: var(--gold-light) !important;
  box-shadow: 0 0 0 3px rgba(247, 225, 184, 0.4), 0 20px 50px rgba(214, 167, 96, 0.6) !important;
  animation: cardFlash 1.8s ease;
}

@keyframes cardFlash {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.pcard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.1);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
  z-index: -2;
}

.pcard:hover .pcard-bg {
  transform: scale(1.09);
  filter: saturate(1.15) contrast(1.15);
}

.pcard-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 7, 0.15) 0%, rgba(4, 5, 7, 0.4) 40%, rgba(4, 5, 7, 0.94) 85%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.pcard-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.pcard h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.pcard-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.pcard-link {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--gold-light);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pcard:hover .pcard-link {
  opacity: 1;
  transform: translateX(4px);
}

/* STUDIO SHOWCASE SECTION */
.studio-showcase {
  padding: 120px 8%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.studio-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.studio-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.12;
  margin-top: 12px;
  color: #fff;
}

.gold-rule {
  display: block;
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 30px;
  box-shadow: 0 0 12px var(--gold);
}

.studio-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.studio-pills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill {
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(14, 18, 24, 0.6);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
}

.pill strong {
  display: block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.pill small {
  color: var(--gold-light);
  font-size: 11.5px;
}

.pill.active, .pill:hover {
  border-color: var(--gold);
  background: rgba(214, 167, 96, 0.14);
  transform: translateX(8px);
  box-shadow: 0 10px 30px -10px rgba(214, 167, 96, 0.3);
}

.studio-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 500px;
  border: 1px solid var(--line-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.studio-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.frame-glass {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: rgba(8, 11, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-gold);
}

.frame-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.frame-glass p {
  color: var(--ink);
  font-size: 14px;
  margin: 0;
}

/* PLACES MAP & LOCATIONS */
.places {
  padding: 120px 8%;
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}

.places-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 54px);
  color: #fff;
  margin-top: 10px;
}

.places-copy p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 520px;
  margin-bottom: 24px;
}

.places-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  transition: var(--transition);
}

.places-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.map-wrap {
  margin-top: 44px;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 20, 0.95), rgba(6, 8, 12, 0.98));
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75);
}

.map-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.map-pill-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--line-gold);
  background: rgba(14, 18, 24, 0.6);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.map-pill-btn:hover, .map-pill-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(214, 167, 96, 0.4);
}

.world-map {
  width: 100%;
  height: auto;
}

.arc-line {
  stroke: var(--gold-light);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: arcFlow 2.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(214, 167, 96, 0.5));
}

@keyframes arcFlow {
  from { stroke-dashoffset: 24; }
  to { stroke-dashoffset: 0; }
}

.city-node {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.city-node:hover {
  transform: scale(1.12);
}

.pulse-ring {
  fill: rgba(214, 167, 96, 0.2);
  animation: pulseRing 3s ease-out infinite;
}

.core-dot {
  filter: drop-shadow(0 0 8px var(--gold));
}

.city-badge-box {
  fill: rgba(8, 11, 15, 0.92);
  stroke: rgba(247, 225, 184, 0.38);
  stroke-width: 1;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.85));
  transition: var(--transition);
}

.city-node:hover .city-badge-box {
  stroke: var(--gold);
  fill: rgba(14, 20, 28, 0.98);
}

.city small {
  fill: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 1px;
}

.city:hover {
  transform: scale(1.18);
}

@keyframes pulseRing {
  0% { r: 6px; opacity: 1; }
  100% { r: 26px; opacity: 0; }
}

/* STATS COUNTER */
.stats {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 26px;
  border-radius: var(--radius-sm);
  background: rgba(14, 18, 24, 0.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(214, 167, 96, 0.3);
}

.stat-folk-icon {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(214, 167, 96, 0.4));
}

.stat strong {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat small {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* EDITORIAL INSIGHTS */
.insights {
  padding: 120px 8%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.insight-card {
  padding: 38px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(14, 18, 24, 0.5);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(16, 22, 30, 0.85);
  box-shadow: 0 20px 45px -10px rgba(214, 167, 96, 0.3);
}

.insight-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.insight-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.insight-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.insight-link {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.insight-card:hover .insight-link {
  color: #fff;
  transform: translateX(4px);
}

/* CONTACT & INQUIRY FORM */
.contact-section {
  padding: 120px 8%;
  background: var(--bg2);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 20, 28, 0.9), rgba(8, 11, 15, 0.96));
  border: 1px solid var(--line-gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.contact-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 13.5px;
}

.contact-details strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
}

.contact-details a, .contact-details span {
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 5, 7, 0.65);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(214, 167, 96, 0.3);
  background: rgba(4, 5, 7, 0.9);
}

.submit-btn {
  padding: 16px 34px;
  border-radius: 30px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.submit-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 0 35px rgba(214, 167, 96, 0.6);
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  padding: 60px 8% 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

footer p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.footer-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  transition: var(--transition);
}

.footer-cta:hover {
  color: #fff;
  transform: translateX(4px);
}

/* LIGHTBOX MODAL DIALOG */
dialog#projectDialog {
  margin: auto;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: rgba(8, 11, 15, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  color: #fff;
  max-width: 880px;
  width: 90vw;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  outline: none;
}

dialog::backdrop {
  background: rgba(2, 3, 4, 0.85);
  backdrop-filter: blur(10px);
}

.dialog-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.close-dialog {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.close-dialog:hover {
  background: var(--gold);
  color: var(--bg);
}

.dialog-image-wrap {
  height: 100%;
  min-height: 400px;
}

.dialog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dialog-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.dialog-body h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.dialog-meta {
  display: flex;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.dialog-meta span {
  display: block;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
}

.dialog-meta small {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
}

.dialog-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.dialog-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 24px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-align: center;
  transition: var(--transition);
}

.dialog-btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 34px;
  right: 34px;
  padding: 18px 32px;
  border-radius: 30px;
  background: rgba(14, 20, 28, 0.96);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE STYLES */
@media (max-width: 1400px) {
  .hero-building-img {
    max-width: 52%;
    max-height: 72%;
  }
  .loc-b1, .loc-b2, .loc-b3 {
    left: 210px;
  }
  .loc-b4, .loc-b5, .loc-b6 {
    right: 220px;
  }
}

@media (max-width: 1200px) {
  .project-node {
    padding: 5px 14px 5px 6px;
    gap: 8px;
  }
  .node-photo {
    width: 40px;
    height: 40px;
  }
  .node-label strong {
    font-size: 11px;
  }
  .node-label small {
    font-size: 8.5px;
  }
  .map-stats-card, .map-legend-card {
    width: 170px;
  }
  .map-capabilities-card {
    width: 195px;
  }
  .loc-b1, .loc-b2, .loc-b3 {
    left: 185px;
  }
  .loc-b4, .loc-b5, .loc-b6 {
    right: 200px;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 60px 24px 40px;
  }
  .network-stage {
    min-height: 560px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-container, .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 0 24px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav, .topbar-cta {
    display: none;
  }
  .menu {
    display: flex;
  }
  .float-layer {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .dialog-content {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 36px 24px;
  }
}