:root {
  color-scheme: dark;
  --black: #02050a;
  --charcoal: #0a0f16;
  --navy: #071b33;
  --navy-2: #102b4d;
  --ink: #172233;
  --slate: #728094;
  --muted: #aeb8c5;
  --platinum: #f7f8f4;
  --paper: #ffffff;
  --gold: #b89552;
  --gold-2: #d0b16d;
  --bronze: #8d6941;
  --line-dark: rgba(247, 248, 244, .14);
  --line-light: rgba(7, 27, 51, .12);
  --max: 1180px;
  --header: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--platinum);
  font-family: Aptos, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--platinum);
  color: var(--navy);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 62px);
  border-bottom: 1px solid rgba(247, 248, 244, .1);
  background: linear-gradient(180deg, rgba(2, 5, 10, .78), rgba(2, 5, 10, .42));
  backdrop-filter: blur(18px);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(2, 5, 10, .9);
  border-color: rgba(184, 149, 82, .28);
}

.brand {
  width: 188px;
  height: 58px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: rgba(247, 248, 244, .74);
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 30px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-2);
  transition: transform .28s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: max-content;
  padding: 12px 18px;
  color: var(--platinum);
  border: 1px solid rgba(208, 177, 109, .55);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .28s var(--ease), color .28s var(--ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(247, 248, 244, .16);
  border-radius: 3px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  background: var(--platinum);
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  inset: var(--header) 0 auto;
  display: none;
  padding: 22px 24px 28px;
  background: rgba(2, 5, 10, .96);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--platinum);
  border-bottom: 1px solid rgba(247, 248, 244, .08);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 34px) clamp(20px, 5vw, 62px) 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(184, 149, 82, .18), transparent 28%),
    radial-gradient(circle at 22% 16%, rgba(16, 43, 77, .92), transparent 36%),
    linear-gradient(135deg, #02050a 0%, #07111f 44%, #071b33 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,248,244,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(247,248,244,.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.88), transparent 78%);
  pointer-events: none;
}

.capital-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .46;
  z-index: 1;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,5,10,.98) 0%, rgba(2,5,10,.78) 34%, rgba(2,5,10,.34) 58%, rgba(2,5,10,.78) 100%),
    linear-gradient(180deg, rgba(2,5,10,.38) 0%, rgba(2,5,10,.12) 48%, rgba(2,5,10,.86) 100%),
    url("assets/veim-hero-capital-development.png") center right / cover no-repeat;
  opacity: .72;
  transform: scale(1.01);
}

.hero-architecture {
  position: absolute;
  right: min(4vw, 50px);
  bottom: 0;
  width: min(48vw, 690px);
  height: 58vh;
  min-height: 360px;
  opacity: .28;
  pointer-events: none;
}

.tower {
  position: absolute;
  bottom: 0;
  width: 22%;
  border: 1px solid rgba(247, 248, 244, .11);
  background:
    linear-gradient(180deg, rgba(247,248,244,.1), transparent 28%),
    repeating-linear-gradient(180deg, rgba(247,248,244,.12) 0 1px, transparent 1px 32px),
    linear-gradient(120deg, rgba(7,27,51,.84), rgba(2,5,10,.34));
  box-shadow: inset 0 0 70px rgba(208,177,109,.06);
}

.tower-one {
  left: 4%;
  height: 58%;
}

.tower-two {
  left: 24%;
  height: 92%;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.tower-three {
  left: 51%;
  height: 72%;
}

.tower-four {
  right: 0;
  height: 46%;
  clip-path: polygon(0 0, 100% 13%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(310px, .58fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Aptos Display", Avenir Next, Aptos, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
  font-weight: 650;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(247, 248, 244, .78);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.button.primary.dark {
  color: var(--platinum);
  background: var(--navy);
}

.button.ghost {
  color: var(--platinum);
  border-color: rgba(247, 248, 244, .28);
  background: rgba(247, 248, 244, .04);
}

.hero-panel {
  align-self: center;
  min-height: 390px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247,248,244,.08), rgba(247,248,244,.025)),
    rgba(7, 27, 51, .52);
  border: 1px solid rgba(247, 248, 244, .16);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.panel-mark {
  width: 86px;
  margin-bottom: auto;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.28));
}

.panel-label {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-panel h2 {
  margin-bottom: 18px;
  color: var(--platinum);
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1.04;
  font-weight: 620;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.mandate-list {
  display: grid;
  gap: 10px;
}

.mandate-list span {
  padding: 8px 0;
  color: rgba(247,248,244,.8);
  border-top: 1px solid rgba(247,248,244,.11);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: rgba(2,5,10,.22);
  backdrop-filter: blur(12px);
}

.trust-strip div {
  min-height: 86px;
  padding: 20px 24px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.trust-strip strong {
  color: var(--platinum);
  font-family: "Aptos Display", Avenir Next, Aptos, Inter, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 620;
}

.trust-strip span {
  color: rgba(247,248,244,.62);
  font-size: 13px;
}

.section-dark,
.section-light {
  position: relative;
  padding: clamp(76px, 9vw, 128px) clamp(20px, 5vw, 62px);
}

.section-dark {
  background: linear-gradient(180deg, var(--black), #07101d);
  color: var(--platinum);
}

.section-light {
  background: var(--platinum);
  color: var(--ink);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split,
.strategy-grid,
.global-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(38px, 7vw, 92px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.split h2,
.strategy-copy h2,
.global-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
  font-weight: 640;
}

.section-light h2 {
  color: var(--navy);
}

.section-dark h2 {
  color: var(--platinum);
}

.section-heading p,
.position-copy p,
.strategy-copy p,
.global-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-light .section-heading p,
.section-light .strategy-copy p,
.section-light .contact-copy p {
  color: #596879;
}

.position-copy > p {
  margin-bottom: 20px;
}

.about-identity {
  display: grid;
  align-content: start;
  gap: 28px;
}

.authority-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 244, .16);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}

.authority-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.authority-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,5,10,.08), rgba(2,5,10,.92)),
    linear-gradient(90deg, rgba(2,5,10,.88), transparent);
}

.authority-visual div {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.authority-visual span,
.investment-command span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.authority-visual strong {
  max-width: 420px;
  color: var(--platinum);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  text-wrap: balance;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.value-grid article {
  min-height: 210px;
  padding: 24px;
  background: #07101d;
}

.value-grid span,
.area-index,
.project-meta span,
.strategy-system span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.value-grid h3,
.area-card h3,
.project-meta h3 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.value-grid p {
  margin-bottom: 0;
  color: rgba(247,248,244,.66);
  font-size: 15px;
}

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

.investment-command {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin: -10px 0 22px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(7, 27, 51, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7,27,51,.95), rgba(7,27,51,.62)),
    url("assets/veim-development-project.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(7, 27, 51, .18);
}

.investment-command h3 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--platinum);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.investment-command ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.investment-command li {
  position: relative;
  padding: 13px 16px 13px 42px;
  color: rgba(247,248,244,.86);
  border: 1px solid rgba(247,248,244,.15);
  background: rgba(2,5,10,.36);
  border-radius: 6px;
}

.investment-command li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold-2);
}

.area-card {
  min-height: 320px;
  grid-column: span 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 27, 51, .08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.area-card::after {
  content: "";
  position: absolute;
  inset: auto -15% -30% 28%;
  height: 58%;
  background:
    radial-gradient(circle at 50% 50%, rgba(184,149,82,.12), transparent 48%),
    repeating-linear-gradient(135deg, rgba(7,27,51,.08) 0 1px, transparent 1px 18px);
  opacity: .8;
  pointer-events: none;
}

.area-card > * {
  position: relative;
  z-index: 1;
}

.area-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.area-graphic {
  width: 74px;
  height: 74px;
  position: relative;
  border: 1px solid rgba(184,149,82,.38);
  border-radius: 6px;
  background: rgba(7, 27, 51, .04);
}

.area-graphic::before,
.area-graphic::after {
  content: "";
  position: absolute;
}

.graphic-tower::before {
  inset: 18px 16px 12px;
  background:
    linear-gradient(90deg, transparent 0 27%, var(--gold) 27% 39%, transparent 39% 62%, var(--navy) 62% 74%, transparent 74%),
    linear-gradient(0deg, var(--navy) 0 6px, transparent 6px);
}

.graphic-equity::before {
  left: 14px;
  right: 14px;
  top: 18px;
  height: 36px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: skewX(-12deg);
}

.graphic-equity::after {
  left: 20px;
  top: 34px;
  width: 38px;
  height: 2px;
  background: var(--navy);
  transform: rotate(-26deg);
}

.graphic-network::before {
  inset: 18px;
  background:
    radial-gradient(circle at 0 20%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 0, var(--navy) 0 4px, transparent 5px),
    radial-gradient(circle at 100% 72%, var(--gold) 0 4px, transparent 5px),
    linear-gradient(145deg, transparent 48%, rgba(7,27,51,.72) 49% 51%, transparent 52%),
    linear-gradient(28deg, transparent 48%, rgba(184,149,82,.72) 49% 51%, transparent 52%);
}

.graphic-future::before {
  inset: 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.graphic-future::after {
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}

.graphic-control::before {
  left: 14px;
  right: 14px;
  top: 18px;
  bottom: 18px;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 2px no-repeat;
}

.graphic-control::after {
  left: 23px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 24px 18px 0 var(--navy), 10px 36px 0 var(--gold);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(7, 27, 51, .13);
}

.area-card-wide {
  grid-column: span 4;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(7,27,51,.94), rgba(16,43,77,.86)),
    var(--navy);
  color: var(--platinum);
}

.area-card-wide .area-graphic {
  background: rgba(247,248,244,.04);
}

.area-card-wide .area-graphic::before,
.area-card-wide .area-graphic::after {
  filter: brightness(1.25);
}

.area-card p {
  margin: 0;
  color: #596879;
  font-size: 16px;
}

.area-card-wide p {
  color: rgba(247,248,244,.7);
}

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

.development-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 0;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 244, .14);
  border-radius: 8px;
  background: rgba(247,248,244,.04);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.development-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.development-feature div {
  padding: clamp(28px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(7,27,51,.98), rgba(2,5,10,.88)),
    var(--navy);
}

.development-feature span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.development-feature h3 {
  margin: 16px 0 16px;
  color: var(--platinum);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.development-feature p {
  margin: 0;
  color: rgba(247,248,244,.7);
  font-size: 18px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(247, 248, 244, .13);
  border-radius: 8px;
  background: rgba(247,248,244,.035);
}

.project-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247,248,244,.07), transparent),
    linear-gradient(135deg, #091627, #02050a);
}

.project-image-development {
  background:
    linear-gradient(180deg, rgba(2,5,10,.08), rgba(2,5,10,.76)),
    url("assets/veim-development-project.png") center / cover no-repeat;
}

.project-image-capital {
  background:
    linear-gradient(180deg, rgba(2,5,10,.08), rgba(2,5,10,.8)),
    url("assets/veim-hero-capital-development.png") center / cover no-repeat;
}

.project-image-abstract {
  background:
    radial-gradient(circle at 72% 30%, rgba(184,149,82,.34), transparent 22%),
    radial-gradient(circle at 28% 70%, rgba(247,248,244,.14), transparent 24%),
    linear-gradient(135deg, #071b33, #02050a);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 76%;
  background:
    linear-gradient(90deg, transparent 4%, rgba(247,248,244,.16) 4% 5%, transparent 5% 14%, rgba(247,248,244,.11) 14% 16%, transparent 16% 30%, rgba(247,248,244,.17) 30% 32%, transparent 32% 46%, rgba(247,248,244,.1) 46% 48%, transparent 48% 60%, rgba(247,248,244,.2) 60% 61%, transparent 61%),
    linear-gradient(180deg, transparent 0 14%, rgba(247,248,244,.16) 14% 15%, transparent 15% 30%, rgba(247,248,244,.12) 30% 31%, transparent 31% 47%, rgba(247,248,244,.16) 47% 48%, transparent 48%);
  clip-path: polygon(0 46%, 11% 38%, 17% 20%, 28% 28%, 38% 8%, 46% 30%, 58% 18%, 66% 42%, 78% 16%, 91% 34%, 100% 23%, 100% 100%, 0 100%);
  opacity: .74;
  mix-blend-mode: screen;
}

.project-visual::after {
  height: 38%;
  filter: blur(24px);
  opacity: .38;
}

.skyline-gold {
  box-shadow: inset 0 -110px 120px rgba(184,149,82,.22);
}

.skyline-platinum {
  box-shadow: inset 0 -110px 120px rgba(247,248,244,.13);
}

.skyline-bronze {
  box-shadow: inset 0 -110px 120px rgba(141,105,65,.28);
}

.project-meta {
  padding: 26px;
}

.project-meta p {
  margin: 0;
  color: rgba(247,248,244,.66);
}

.strategy-grid {
  align-items: center;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.strategy-system {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.system-ring {
  position: absolute;
  inset: 9% 12%;
  border: 1px solid rgba(184,149,82,.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184,149,82,.12), transparent 48%),
    radial-gradient(circle, transparent 58%, rgba(7,27,51,.07) 59%, transparent 60%);
  animation: pulseRing 5.5s var(--ease) infinite;
}

.strategy-system article {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(7, 27, 51, .08);
}

.strategy-system strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.1;
}

.global-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.global-map {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(184,149,82,.14), transparent 38%),
    linear-gradient(135deg, rgba(16,43,77,.48), rgba(2,5,10,.7));
}

.global-map canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.market-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 8px rgba(208,177,109,.12), 0 0 42px rgba(208,177,109,.56);
}

.market-dot span {
  position: absolute;
  left: 18px;
  top: -8px;
  color: var(--platinum);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dot-eu { left: 48%; top: 38%; }
.dot-me { left: 58%; top: 48%; }
.dot-na { left: 25%; top: 40%; }
.dot-apac { left: 77%; top: 56%; }

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.region-list span {
  padding: 9px 12px;
  color: rgba(247,248,244,.76);
  border: 1px solid rgba(247,248,244,.16);
  border-radius: 999px;
  font-size: 13px;
}

.contact-grid {
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-channels a {
  color: var(--navy);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(7, 27, 51, .12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7,27,51,.18);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfbf8;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,82,.14);
}

.site-footer {
  padding: 44px clamp(20px, 5vw, 62px);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-inner img {
  width: 190px;
}

.footer-inner p {
  margin: 0;
  color: rgba(247,248,244,.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(247,248,244,.62);
  font-size: 13px;
}

.legal-page {
  background:
    radial-gradient(circle at 78% 14%, rgba(184,149,82,.14), transparent 28%),
    linear-gradient(180deg, #02050a, #07101d 62%, #02050a);
}

.legal-header {
  position: sticky;
  background: rgba(2, 5, 10, .9);
}

.legal-main {
  min-height: 70svh;
}

.legal-hero {
  padding: calc(var(--header) + 78px) clamp(20px, 5vw, 62px) 76px;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, rgba(2,5,10,.94), rgba(2,5,10,.58)),
    url("assets/veim-hero-capital-development.png") center / cover no-repeat;
}

.legal-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 92px);
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(247,248,244,.72);
  font-size: 20px;
}

.legal-content {
  padding: clamp(58px, 7vw, 92px) clamp(20px, 5vw, 62px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247,248,244,.07), rgba(247,248,244,.025)),
    rgba(7, 27, 51, .5);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.legal-card.legal-wide {
  max-width: 920px;
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--platinum);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
}

.legal-card h2:not(:first-child) {
  margin-top: 34px;
}

.legal-card p {
  margin: 0 0 18px;
  color: rgba(247,248,244,.72);
  font-size: 17px;
}

.legal-card a {
  color: var(--gold-2);
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseRing {
  0%, 100% {
    transform: scale(.98);
    opacity: .7;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-grid,
  .split,
  .strategy-grid,
  .global-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 360px;
  }

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

  .area-card,
  .area-card-wide {
    grid-column: span 3;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .development-feature {
    grid-template-columns: 1fr;
  }

  .investment-command {
    grid-template-columns: 1fr;
  }

  .project-visual {
    height: 230px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 74px;
  }

  .site-header {
    gap: 12px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 156px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header) + 38px);
  }

  h1 {
    font-size: clamp(39px, 11vw, 58px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-panel {
    padding: 24px;
    min-height: 330px;
  }

  .hero-panel h2 {
    font-size: clamp(25px, 8vw, 33px);
  }

  .trust-strip,
  .value-grid,
  .strategy-system {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 96px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .area-card,
  .area-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .investment-command {
    padding: 24px;
  }

  .investment-command h3 {
    font-size: clamp(25px, 8vw, 36px);
  }

  .area-top {
    align-items: center;
  }

  .area-graphic {
    width: 58px;
    height: 58px;
  }

  .section-dark,
  .section-light {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .global-map,
  .strategy-system {
    min-height: 430px;
  }

  .market-dot span {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
