:root {
  --ink: #f4f1e8;
  --muted: #b9c4c0;
  --deep: #071214;
  --panel: rgba(11, 28, 30, 0.72);
  --panel-strong: rgba(13, 36, 39, 0.92);
  --gold: #d8b66a;
  --teal: #25b7a4;
  --clay: #b66b52;
  --line: rgba(244, 241, 232, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.protected-page {
  user-select: none;
  -webkit-user-select: none;
}

.protected-page input,
.protected-page textarea,
.protected-page select,
.protected-page button {
  user-select: auto;
  -webkit-user-select: auto;
}

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

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

.market-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(20px, 4vw, 58px);
  transition: background 260ms ease, border-color 260ms ease, padding 260ms ease;
  border-bottom: 1px solid transparent;
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-header::before {
  inset: 8px clamp(12px, 3vw, 34px);
  z-index: -1;
  border: 1px solid rgba(216, 182, 106, 0.18);
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.36), rgba(216, 182, 106, 0.08), rgba(7, 18, 20, 0.34)),
    rgba(7, 18, 20, 0.34);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.24), inset 0 0 34px rgba(216, 182, 106, 0.05);
  backdrop-filter: blur(16px);
}

.site-header::after {
  left: clamp(20px, 4vw, 58px);
  right: clamp(20px, 4vw, 58px);
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 106, 0.18), #f0dca4, rgba(216, 182, 106, 0.18), transparent);
  transform-origin: center;
  animation: navGoldSweep 4.8s ease-in-out infinite;
}

.site-header.scrolled {
  padding-block: 12px;
  background:
    linear-gradient(180deg, rgba(7, 18, 20, 0.9), rgba(7, 18, 20, 0.74));
  border-color: rgba(216, 182, 106, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 246px;
  position: relative;
  z-index: 2;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 182, 106, 0.8);
  background: linear-gradient(135deg, rgba(216, 182, 106, 0.26), rgba(37, 183, 164, 0.16));
  color: var(--gold);
  font-weight: 800;
  box-shadow: 0 12px 38px rgba(216, 182, 106, 0.14);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(216, 182, 106, 0.72);
  box-shadow: 0 0 24px rgba(216, 182, 106, 0.28), 0 0 0 6px rgba(216, 182, 106, 0.045);
  background: #071214;
  animation: navLogoGlow 3.4s ease-in-out infinite alternate;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.nexum-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 182, 106, 0.22), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(37, 183, 164, 0.12), transparent 28%),
    linear-gradient(135deg, #030708 0%, #071214 46%, #0d2427 100%);
  overflow: hidden;
  transition: opacity 620ms ease, visibility 620ms ease;
}

.nexum-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(216, 182, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 182, 106, 0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  transform: perspective(700px) rotateX(62deg) translateY(8%);
  animation: loaderGrid 2200ms linear infinite;
  opacity: 0.34;
}

.loader-orbit {
  position: absolute;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 182, 106, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(216, 182, 106, 0.08), 0 0 80px rgba(216, 182, 106, 0.12);
  animation: loaderPulse 1800ms ease-in-out infinite alternate;
}

.loader-orbit::before,
.loader-orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(37, 183, 164, 0.18);
  border-radius: 50%;
  animation: loaderSpin 2800ms linear infinite;
}

.loader-orbit::after {
  inset: 18%;
  border-color: rgba(216, 182, 106, 0.34);
  animation-duration: 1900ms;
  animation-direction: reverse;
}

.loader-card {
  position: relative;
  z-index: 2;
  width: min(88vw, 520px);
  text-align: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(216, 182, 106, 0.32);
  background: rgba(7, 18, 20, 0.72);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.54), 0 0 70px rgba(216, 182, 106, 0.16);
  backdrop-filter: blur(22px);
}

.loader-logo {
  width: clamp(112px, 24vw, 164px);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto;
  border: 1px solid rgba(216, 182, 106, 0.42);
  box-shadow: 0 0 34px rgba(216, 182, 106, 0.36);
  animation: loaderLogo 1500ms ease-in-out infinite alternate;
}

.loader-card strong {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1;
}

.loader-card span {
  display: block;
  margin-top: 10px;
  color: rgba(244, 241, 232, 0.74);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.loader-progress {
  height: 3px;
  margin: 26px auto 0;
  max-width: 320px;
  background: rgba(244, 241, 232, 0.13);
  overflow: hidden;
}

.loader-progress i {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), #25b7a4);
  animation: loaderProgress 1300ms ease-in-out infinite;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: rgba(244, 241, 232, 0.82);
  font-size: 14px;
  position: relative;
  z-index: 2;
  justify-self: center;
  padding: 7px;
  border: 1px solid rgba(216, 182, 106, 0.14);
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.08), rgba(244, 241, 232, 0.025)),
    rgba(7, 18, 20, 0.46);
  box-shadow: inset 0 0 28px rgba(216, 182, 106, 0.035), 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.main-nav a,
.nav-group > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(244, 241, 232, 0.84);
  font-weight: 850;
  overflow: hidden;
  transition: color 240ms ease, border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.main-nav a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  inset: auto 12px 6px 12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--gold), #f0dca4, transparent);
  box-shadow: 0 0 18px rgba(216, 182, 106, 0.45);
  transition: transform 260ms ease;
}

.main-nav a::before,
.nav-group > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(216, 182, 106, 0.22), transparent);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 520ms ease, opacity 220ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-group > a:hover,
.nav-group > a.active {
  color: #f0dca4;
  border-color: rgba(216, 182, 106, 0.22);
  background: rgba(216, 182, 106, 0.075);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.nav-group > a:hover::after,
.nav-group > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover::before,
.nav-group > a:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  min-width: 306px;
  transform: translate(-50%, 16px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(216, 182, 106, 0.34);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 182, 106, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(7, 18, 20, 0.98), rgba(13, 36, 39, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 44px rgba(216, 182, 106, 0.12);
  backdrop-filter: blur(24px);
  transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
  overflow: hidden;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 182, 106, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(216, 182, 106, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
  opacity: 0.5;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown a {
  min-height: 46px;
  padding: 0 14px;
  color: rgba(244, 241, 232, 0.84);
  border: 1px solid rgba(244, 241, 232, 0.055);
  background: rgba(7, 18, 20, 0.36);
  z-index: 1;
}

.nav-dropdown a:hover {
  border-color: rgba(216, 182, 106, 0.34);
  background: rgba(216, 182, 106, 0.095);
  color: var(--gold);
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(216, 182, 106, 0.42);
  font-weight: 700;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, color 240ms ease;
  cursor: pointer;
}

.nav-cta,
.primary-action {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #b98f36 0%, #f0dca4 48%, #d8b66a 100%);
  color: #13201f;
  box-shadow: 0 16px 44px rgba(216, 182, 106, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-cta::after,
.primary-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-120%);
  animation: navButtonShine 3.2s ease-in-out infinite;
}

.secondary-action {
  background: rgba(244, 241, 232, 0.08);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.nav-cta:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 241, 232, 0.7);
}

.language-switcher {
  position: relative;
  z-index: 35;
}

.language-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  min-width: 86px;
  border: 1px solid rgba(216, 182, 106, 0.48);
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.18), rgba(37, 183, 164, 0.08)),
    rgba(244, 241, 232, 0.07);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(216, 182, 106, 0.16), inset 0 0 20px rgba(216, 182, 106, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.language-current:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 182, 106, 0.74);
  box-shadow: 0 18px 50px rgba(216, 182, 106, 0.22);
}

.language-flag {
  width: 25px;
  height: 18px;
  object-fit: cover;
  border: 1px solid rgba(244, 241, 232, 0.28);
  box-shadow: 0 0 18px rgba(216, 182, 106, 0.12);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 214px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(216, 182, 106, 0.34);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 182, 106, 0.16), transparent 28%),
    rgba(7, 18, 20, 0.97);
  box-shadow: var(--shadow), 0 0 42px rgba(216, 182, 106, 0.12);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.language-switcher.open .language-menu {
  display: grid !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher:not(.open) .language-menu {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(244, 241, 232, 0.84);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  padding: 8px 10px;
}

.language-option .language-flag {
  width: 28px;
  height: 20px;
}

.language-option:hover,
.language-option.active {
  border-color: rgba(216, 182, 106, 0.24);
  background: rgba(244, 241, 232, 0.06);
  color: var(--gold);
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 182, 106, 0.38);
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.16), rgba(244, 241, 232, 0.04)),
    rgba(7, 18, 20, 0.72);
  color: var(--gold);
  font-size: 22px;
  box-shadow: 0 14px 38px rgba(216, 182, 106, 0.12);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 126px clamp(20px, 6vw, 92px) 96px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 20, 0.94) 0%, rgba(7, 18, 20, 0.74) 34%, rgba(7, 18, 20, 0.28) 72%),
    linear-gradient(180deg, rgba(7, 18, 20, 0.18) 0%, rgba(7, 18, 20, 0.88) 100%);
}

.money-rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.money-rain span {
  position: absolute;
  top: -10%;
  color: rgba(216, 182, 106, 0.28);
  font-size: clamp(26px, 4vw, 72px);
  font-weight: 900;
  animation: moneyFall 9s linear infinite;
}

.money-rain span:nth-child(1) { left: 12%; animation-delay: 0s; }
.money-rain span:nth-child(2) { left: 28%; animation-delay: 1.3s; }
.money-rain span:nth-child(3) { left: 44%; animation-delay: 2.1s; }
.money-rain span:nth-child(4) { left: 58%; animation-delay: 3.2s; }
.money-rain span:nth-child(5) { left: 70%; animation-delay: 4.4s; }
.money-rain span:nth-child(6) { left: 82%; animation-delay: 5.1s; }
.money-rain span:nth-child(7) { left: 92%; animation-delay: 6s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.section-heading span,
.contact-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::before,
.section-heading span::before,
.contact-copy > span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 136px);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 100%;
}

.hero-lead {
  max-width: 760px;
  color: rgba(244, 241, 232, 0.86);
  font-size: clamp(18px, 2vw, 25px);
}

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

.wealth-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.wealth-strip span {
  border: 1px solid rgba(216, 182, 106, 0.3);
  background: rgba(244, 241, 232, 0.075);
  color: rgba(244, 241, 232, 0.86);
  padding: 8px 12px;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  max-width: 670px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 22px;
  background: rgba(7, 18, 20, 0.64);
  backdrop-filter: blur(18px);
}

.hero-metrics strong {
  display: block;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.ticker-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 18, 20, 0.78);
  backdrop-filter: blur(16px);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 22px;
  padding: 16px 22px;
  animation: tickerMove 26s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  color: var(--muted);
}

.ticker-track b {
  color: var(--teal);
  font-weight: 800;
}

section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 92px);
}

.section-band {
  background: linear-gradient(180deg, rgba(244, 241, 232, 0.035), rgba(37, 183, 164, 0.055));
  border-block: 1px solid rgba(244, 241, 232, 0.08);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
}

.section-heading {
  max-width: 760px;
  min-width: 0;
}

.section-heading h2,
.contact-copy h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy {
  color: rgba(244, 241, 232, 0.78);
  font-size: 18px;
}

.about-nexum {
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 182, 106, 0.12), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(37, 183, 164, 0.12), transparent 28%),
    rgba(7, 18, 20, 0.98);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  margin-top: 48px;
  align-items: start;
}

.about-story {
  column-count: 2;
  column-gap: 34px;
  color: rgba(244, 241, 232, 0.88);
  font-size: 17px;
}

.about-story p {
  break-inside: avoid;
}

.about-quote,
.team-card,
.chairman-message {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-quote {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.about-quote::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 182, 106, 0.22), transparent 68%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.about-quote strong {
  position: relative;
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.about-quote p {
  position: relative;
  color: rgba(244, 241, 232, 0.88);
}

.about-points {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.055);
  color: var(--muted);
  padding: 12px 14px;
  font-weight: 800;
}

.leadership {
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.035), rgba(37, 183, 164, 0.045)),
    rgba(7, 18, 20, 0.94);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
  position: relative;
}

.team-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 106, 0.42), transparent);
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  transition: transform 260ms ease, border-color 260ms ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 150px;
  background: radial-gradient(circle, rgba(37, 183, 164, 0.18), transparent 70%);
  transition: transform 280ms ease;
}

.team-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 182, 106, 0.42);
}

.team-card:hover::after {
  transform: scale(1.2);
}

.team-initials {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(216, 182, 106, 0.58);
  background: linear-gradient(135deg, rgba(216, 182, 106, 0.28), rgba(37, 183, 164, 0.12));
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 34px;
}

.team-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.team-card a {
  position: relative;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.chairman-message {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  margin-top: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.message-heading {
  border-right: 1px solid var(--line);
  padding-right: clamp(18px, 3vw, 38px);
}

.message-heading span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.message-heading h2 {
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
}

.message-heading p,
.message-copy p {
  color: rgba(244, 241, 232, 0.76);
}

.message-copy {
  font-size: 16px;
}

.signature {
  margin-top: 30px;
  color: var(--ink) !important;
}

.signature strong {
  color: var(--gold);
  font-size: 18px;
}

.solutions {
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 182, 106, 0.12), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(37, 183, 164, 0.14), transparent 30%);
}

.wealth-engine {
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 182, 106, 0.16), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(182, 107, 82, 0.12), transparent 28%),
    rgba(7, 18, 20, 0.96);
}

.home-gateway {
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 182, 106, 0.14), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(37, 183, 164, 0.12), transparent 30%),
    rgba(7, 18, 20, 0.96);
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.gateway-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.07), rgba(244, 241, 232, 0.025)),
    rgba(7, 18, 20, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.gateway-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, transparent 8%, rgba(216, 182, 106, 0.24) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 280ms ease, transform 640ms ease;
}

.gateway-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 183, 164, 0.2), transparent 68%);
  animation: pulseGlow 4.4s ease-in-out infinite;
}

.gateway-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 182, 106, 0.5);
  background: rgba(13, 36, 39, 0.88);
}

.gateway-card:hover::before {
  opacity: 1;
  transform: translateX(38%);
}

.gateway-card span,
.proof-panel > span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gateway-card h3 {
  position: relative;
  z-index: 1;
  margin: 58px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
}

.gateway-card p {
  position: relative;
  z-index: 1;
  color: rgba(244, 241, 232, 0.76);
}

.gateway-card b {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 1;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--gold);
}

.home-proof {
  min-height: 78vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.9), rgba(7, 18, 20, 0.62)),
    url("assets/nexum-hero.png") center / cover;
}

.proof-panel {
  max-width: 1060px;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: clamp(30px, 6vw, 72px);
  text-align: center;
}

.proof-panel h2 {
  margin: 18px auto;
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1;
}

.proof-panel p {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(244, 241, 232, 0.76);
  font-size: 18px;
}

.proof-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wealth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.wealth-card,
.project-card,
.project-feature,
.map-card,
.legal-tile,
.doc-card,
.thanks-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.wealth-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
}

.wealth-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 150px;
  background: radial-gradient(circle, rgba(216, 182, 106, 0.22), transparent 68%);
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.wealth-card span,
.project-card span,
.project-status {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wealth-card h3 {
  margin: 44px 0 14px;
  font-size: 25px;
}

.wealth-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.9;
  margin-bottom: 18px;
}

.solution-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.solution-card,
.insight-card,
.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.solution-card::before,
.insight-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(130deg, transparent 0%, rgba(216, 182, 106, 0.22) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-34%);
  transition: opacity 320ms ease, transform 580ms ease;
}

.solution-card:hover,
.insight-card:hover,
.timeline-item:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 182, 106, 0.45);
  background: var(--panel-strong);
}

.solution-card:hover::before,
.insight-card:hover::before {
  opacity: 1;
  transform: translateX(34%);
}

.card-index {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 54px;
}

.solution-card h3,
.insight-card h3,
.timeline-item h3 {
  position: relative;
  margin-bottom: 14px;
  font-size: 23px;
}

.solution-card p,
.insight-card p,
.timeline-item p,
.analytics-panel p,
.contact-copy p,
.legal {
  color: rgba(244, 241, 232, 0.74);
}

.solution-card ul {
  position: relative;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.solution-card li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.analytics {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.analytics-panel {
  max-width: 640px;
}

.data-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.data-controls button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.06);
  color: var(--ink);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.data-controls button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #13201f;
}

.dashboard {
  border: 1px solid rgba(216, 182, 106, 0.28);
  background:
    linear-gradient(135deg, rgba(37, 183, 164, 0.14), rgba(216, 182, 106, 0.08)),
    rgba(7, 18, 20, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
  min-height: 520px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.dashboard-head span {
  color: var(--muted);
}

.dashboard-head strong {
  color: var(--gold);
}

.chart-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 18px;
  height: 286px;
  padding-top: 38px;
}

.bar {
  position: relative;
  height: var(--h);
  min-height: 36px;
  background: linear-gradient(180deg, #d8b66a, #25b7a4);
  transform-origin: bottom;
  animation: barGrow 900ms ease both;
  box-shadow: 0 18px 46px rgba(37, 183, 164, 0.14);
}

.bar span {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.risk-grid div {
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(244, 241, 232, 0.055);
}

.risk-grid span,
.risk-grid strong {
  display: block;
}

.risk-grid span {
  color: var(--muted);
  font-size: 12px;
}

.risk-grid strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 26px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline-item {
  min-height: 300px;
  box-shadow: none;
  background: rgba(7, 18, 20, 0.72);
}

.timeline-item span,
.insight-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card {
  min-height: 260px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.94), rgba(13, 36, 39, 0.86)),
    url("assets/nexum-hero.png") center / cover;
}

.contact-copy {
  align-self: center;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-weight: 800;
}

.contact-lines a,
.contact-lines span {
  display: block;
  border-left: 3px solid rgba(216, 182, 106, 0.72);
  background: linear-gradient(90deg, rgba(216, 182, 106, 0.1), rgba(244, 241, 232, 0.035));
  padding: 12px 14px;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.78);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.premium-contact {
  position: relative;
  overflow: hidden;
}

.form-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 182, 106, 0.24), transparent 68%);
  animation: pulseGlow 3.2s ease-in-out infinite;
  pointer-events: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.check-line {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.check-line input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.send-button {
  position: relative;
  overflow: hidden;
}

.send-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-110%);
  animation: sendShine 2.6s ease-in-out infinite;
}

.maps {
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.035), rgba(37, 183, 164, 0.06)),
    rgba(7, 18, 20, 0.98);
}

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

.map-card {
  padding: 24px;
}

.map-card h3 {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.56);
  color: var(--gold);
}

.map-card p {
  color: rgba(244, 241, 232, 0.72);
  min-height: 70px;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.78) contrast(1.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.inner-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 182, 106, 0.12), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(37, 183, 164, 0.14), transparent 28%),
    var(--deep);
}

.page-hero {
  padding-top: 150px;
}

.compact-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 182, 106, 0.16);
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.94), rgba(7, 18, 20, 0.62)),
    url("assets/nexum-hero.png") center / cover;
}

.compact-hero::before,
.compact-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.compact-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 182, 106, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(216, 182, 106, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: 0.5;
}

.compact-hero::after {
  right: clamp(18px, 7vw, 110px);
  bottom: clamp(24px, 7vw, 92px);
  width: clamp(150px, 22vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 182, 106, 0.2);
  box-shadow: inset 0 0 44px rgba(216, 182, 106, 0.09), 0 0 72px rgba(216, 182, 106, 0.12);
  border-radius: 50%;
  animation: loaderSpin 18s linear infinite;
}

.compact-hero .section-heading {
  position: relative;
  z-index: 2;
  max-width: 1060px;
}

.compact-hero .section-heading::after {
  content: "Nexum Capital";
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 182, 106, 0.24);
  background: rgba(7, 18, 20, 0.58);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.compact-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 96px);
}

.compact-hero p {
  max-width: 760px;
  color: rgba(244, 241, 232, 0.76);
  font-size: 18px;
}

.page-services .compact-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.94), rgba(13, 36, 39, 0.56)),
    radial-gradient(circle at 82% 22%, rgba(37, 183, 164, 0.22), transparent 26%),
    url("assets/nexum-hero.png") center / cover;
}

.page-services .compact-hero .section-heading::after { content: "Portföy • Kurumsal Finansman • Risk"; }
.page-about .compact-hero .section-heading::after { content: "Türkiye • Körfez • Güven"; }
.page-public-projects .compact-hero .section-heading::after { content: "EKAP • TED • Resmi Süreç"; }
.page-private-projects .compact-hero .section-heading::after { content: "Özel Fırsat • Stratejik Kazanç"; }
.page-corporate-projects .compact-hero .section-heading::after { content: "Büyüme • Ortaklık • Finansman"; }
.page-contact .compact-hero .section-heading::after { content: "Yatırım İletişim Masası"; }
.page-investor-find .compact-hero .section-heading::after { content: "Projem Var • Yatırımcı Bul"; }
.page-legal .compact-hero .section-heading::after { content: "Şeffaflık • KVKK • Resmi Metinler"; }

.page-about .compact-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.95), rgba(7, 18, 20, 0.5)),
    radial-gradient(circle at 76% 18%, rgba(216, 182, 106, 0.2), transparent 30%),
    url("assets/nexum-hero.png") center / cover;
}

.page-public-projects .compact-hero,
.page-legal .compact-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.96), rgba(11, 28, 30, 0.62)),
    radial-gradient(circle at 80% 24%, rgba(216, 182, 106, 0.18), transparent 28%),
    url("assets/nexum-hero.png") center / cover;
}

.page-private-projects .compact-hero,
.page-corporate-projects .compact-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.92), rgba(7, 18, 20, 0.48)),
    radial-gradient(circle at 78% 28%, rgba(216, 182, 106, 0.24), transparent 28%),
    url("assets/nexum-hero.png") center / cover;
}

.page-contact .compact-hero,
.page-investor-find .compact-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.94), rgba(13, 36, 39, 0.54)),
    radial-gradient(circle at 82% 22%, rgba(37, 183, 164, 0.24), transparent 28%),
    url("assets/nexum-hero.png") center / cover;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: clamp(26px, 5vw, 54px);
}

.project-feature h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  margin: 16px 0;
}

.project-metrics {
  display: grid;
  gap: 12px;
}

.project-metrics div {
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(244, 241, 232, 0.055);
}

.project-metrics span,
.project-metrics strong {
  display: block;
}

.project-metrics span {
  color: var(--muted);
  font-size: 12px;
}

.project-metrics strong {
  color: var(--gold);
  font-size: 22px;
}

.project-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.project-card,
.legal-tile {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 28px;
  min-height: 230px;
  transition: transform 260ms ease, border-color 260ms ease;
}

.project-card:hover,
.legal-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 182, 106, 0.42);
}

.projects-home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 136px clamp(20px, 6vw, 92px) 92px;
  overflow: hidden;
}

.projects-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 20, 0.94), rgba(7, 18, 20, 0.58), rgba(7, 18, 20, 0.86)),
    url("assets/nexum-hero.png") center / cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.projects-hero-content,
.projects-command {
  position: relative;
  z-index: 2;
}

.projects-hero-content h1 {
  max-width: 980px;
  font-size: clamp(54px, 8vw, 116px);
}

.projects-hero-content p {
  max-width: 820px;
  color: rgba(244, 241, 232, 0.84);
  font-size: clamp(18px, 2vw, 24px);
}

.projects-command {
  display: grid;
  gap: 14px;
}

.projects-command div {
  border: 1px solid rgba(216, 182, 106, 0.26);
  background: rgba(7, 18, 20, 0.72);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.projects-command span,
.projects-command strong {
  display: block;
}

.projects-command span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.projects-command strong {
  color: var(--gold);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.project-hub {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

.project-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.project-hub-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 241, 232, 0.055), rgba(7, 18, 20, 0.7));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}

.project-hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 12%, rgba(216, 182, 106, 0.16), transparent 34%);
  pointer-events: none;
}

.project-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 18, 20, 0.54) 42%, rgba(7, 18, 20, 0.94) 100%);
  pointer-events: none;
}

.project-public-card {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.35), rgba(7, 18, 20, 0.86)),
    url("assets/nexum-hero.png") 18% 45% / cover;
}

.project-private-card {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.32), rgba(7, 18, 20, 0.88)),
    url("assets/nexum-hero.png") 70% 50% / cover;
}

.project-corporate-card {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.38), rgba(7, 18, 20, 0.88)),
    url("assets/nexum-hero.png") 46% 30% / cover;
}

.project-investor-card {
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.12), rgba(7, 18, 20, 0.86)),
    url("assets/nexum-hero.png") 54% 72% / cover;
}

.hub-visual {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 92px !important;
  height: 92px !important;
  max-width: 92px !important;
  max-height: 92px !important;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 182, 106, 0.32);
  background: rgba(7, 18, 20, 0.58);
  box-shadow: 0 0 44px rgba(216, 182, 106, 0.16);
  animation: loaderLogo 2.4s ease-in-out infinite alternate;
}

.hub-visual img {
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: cover;
}

.project-hub-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 182, 106, 0.46);
}

.project-hub-card b {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.project-hub-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  margin: 34px 0 12px;
}

.project-hub-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.project-hub-card b {
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.18), rgba(7, 18, 20, 0.78)),
    url("assets/nexum-hero.png") center / cover;
}

.live-market {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

.market-terminal {
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 28px;
}

.market-terminal-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.market-terminal-head strong {
  color: var(--teal);
}

.market-tape {
  min-height: 74px;
  display: grid;
  align-items: center;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  margin-top: 22px;
}

.market-widget,
.market-brief {
  border: 1px solid var(--line);
  background: rgba(7, 18, 20, 0.72);
  box-shadow: var(--shadow);
  min-height: 620px;
  overflow: hidden;
}

.market-brief {
  padding: clamp(24px, 4vw, 38px);
}

.market-brief h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin: 16px 0;
}

.market-brief p {
  color: var(--muted);
}

.market-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.market-brief-grid div {
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.045);
  padding: 16px;
}

.market-brief-grid strong,
.market-brief-grid span {
  display: block;
}

.market-brief-grid strong {
  color: var(--gold);
}

.market-brief-grid span {
  color: var(--muted);
  font-size: 13px;
}

.project-conversion {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

.ekap-zone {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

.ekap-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 360px);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.ekap-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  margin: 16px 0;
  max-width: 980px;
}

.ekap-head p,
.ekap-actions p {
  color: var(--muted);
  max-width: 900px;
}

.ekap-badge {
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: linear-gradient(135deg, rgba(216, 182, 106, 0.16), rgba(37, 183, 164, 0.08));
  padding: 24px;
  box-shadow: var(--shadow);
}

.ekap-badge span,
.ekap-badge small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.ekap-badge strong {
  display: block;
  color: var(--gold);
  font-size: 22px;
  margin: 8px 0 12px;
  overflow-wrap: anywhere;
}

.ekap-frame-shell {
  position: relative;
  overflow: hidden;
  min-height: min(74vh, 760px);
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.05);
  box-shadow: var(--shadow);
}

.ekap-frame-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(216, 182, 106, 0.12), transparent 28%, rgba(37, 183, 164, 0.12));
  z-index: 1;
}

.ekap-frame {
  display: block;
  width: 100%;
  min-height: min(74vh, 760px);
  border: 0;
  background: #fff;
}

.ekap-actions {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.ted-zone {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(180deg, rgba(37, 183, 164, 0.04), rgba(216, 182, 106, 0.045)),
    radial-gradient(circle at 82% 20%, rgba(216, 182, 106, 0.13), transparent 28%);
}

.ted-badge {
  background: linear-gradient(135deg, rgba(37, 183, 164, 0.16), rgba(216, 182, 106, 0.12));
}

.ted-panel {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.74);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 44px);
  backdrop-filter: blur(20px);
}

.ted-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.04;
  margin: 12px 0;
}

.ted-panel p {
  color: var(--muted);
  max-width: 820px;
}

.ted-signal {
  position: relative;
  width: min(42vw, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 182, 106, 0.28);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(216, 182, 106, 0.2), transparent 42%),
    rgba(244, 241, 232, 0.035);
}

.ted-signal::before {
  content: "EU";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 800;
  z-index: 2;
}

.ted-signal span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(216, 182, 106, 0.62);
  animation: tedPulse 2200ms ease-in-out infinite;
}

.ted-signal span:nth-child(1) { left: 16%; top: 22%; }
.ted-signal span:nth-child(2) { right: 18%; top: 18%; animation-delay: 360ms; }
.ted-signal span:nth-child(3) { left: 22%; bottom: 18%; animation-delay: 720ms; }
.ted-signal span:nth-child(4) { right: 18%; bottom: 22%; animation-delay: 1080ms; }

.tender-disclaimer {
  margin-top: 22px;
  border: 1px solid rgba(182, 107, 82, 0.34);
  background: linear-gradient(135deg, rgba(182, 107, 82, 0.16), rgba(7, 18, 20, 0.64));
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.tender-disclaimer strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 8px;
}

.tender-disclaimer p {
  color: rgba(244, 241, 232, 0.82);
  margin: 0;
}

.private-narrative {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

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

.narrative-card {
  border: 1px solid var(--line);
  background: rgba(7, 18, 20, 0.68);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.narrative-card p {
  color: rgba(244, 241, 232, 0.82);
  margin: 0;
}

.private-cta {
  margin-top: 22px;
  border: 1px solid rgba(216, 182, 106, 0.3);
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.9), rgba(13, 36, 39, 0.78)),
    url("assets/nexum-hero.png") center / cover;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.private-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
  max-width: 1100px;
  margin: 0 0 16px;
}

.private-cta p {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 24px;
}

.project-submit-hero {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.88), rgba(7, 18, 20, 0.42)),
    url("assets/nexum-hero.png") center / cover;
}

.project-submit {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 6vw, 92px);
}

.project-submit-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 16px 0;
}

.project-submit-copy p {
  color: var(--muted);
}

.project-submit-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.project-submit-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.05);
  padding: 16px;
}

.project-submit-points strong {
  color: var(--gold);
  font-size: 18px;
}

.project-submit-points span {
  color: rgba(244, 241, 232, 0.82);
}

.project-intake-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-intake-form label:has(textarea),
.project-intake-form label:has(input[type="file"]),
.project-intake-form .check-line,
.project-intake-form .send-button,
.project-intake-form .form-note {
  grid-column: 1 / -1;
}

.project-intake-form input[type="file"] {
  padding: 16px;
  cursor: pointer;
}

.project-submit-button {
  justify-content: center;
  font-size: 16px;
  min-height: 58px;
}

.project-thanks-page {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.72), rgba(7, 18, 20, 0.94)),
    url("assets/nexum-hero.png") center / cover;
}

.project-thanks-card {
  border-color: rgba(216, 182, 106, 0.38);
}

.legal-tile h2 {
  font-size: 24px;
  margin: 16px 0 10px;
}

.doc-shell {
  padding: 150px clamp(20px, 6vw, 92px) 80px;
}

.doc-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px);
}

.doc-card h1 {
  font-size: clamp(42px, 7vw, 84px);
  margin-bottom: 28px;
}

.doc-card h2 {
  margin: 34px 0 10px;
  color: var(--gold);
  font-size: 22px;
}

.doc-card p {
  color: rgba(244, 241, 232, 0.78);
}

.doc-kicker {
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.82), rgba(7, 18, 20, 0.96)),
    url("assets/nexum-hero.png") center / cover;
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  overflow: hidden;
}

.thanks-card {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  padding: clamp(32px, 7vw, 78px);
}

.thanks-logo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 1px solid rgba(216, 182, 106, 0.44);
  box-shadow: 0 0 38px rgba(216, 182, 106, 0.28);
}

.success-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0dca4);
  color: #13201f;
  font-size: 38px;
  font-weight: 900;
  animation: successPop 900ms cubic-bezier(.2, 1.4, .34, 1) both;
}

.thanks-card h1 {
  font-size: clamp(42px, 7vw, 92px);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.thanks-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.thanks-orbit span {
  position: absolute;
  color: rgba(216, 182, 106, 0.28);
  font-size: 70px;
  font-weight: 900;
  animation: orbitFloat 7s ease-in-out infinite;
}

.thanks-orbit span:nth-child(1) { left: 10%; top: 16%; }
.thanks-orbit span:nth-child(2) { right: 12%; top: 22%; animation-delay: 1s; }
.thanks-orbit span:nth-child(3) { left: 18%; bottom: 18%; animation-delay: 1.8s; }
.thanks-orbit span:nth-child(4) { right: 20%; bottom: 14%; animation-delay: 2.6s; }

.protect-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(216, 182, 106, 0.35);
  background: rgba(7, 18, 20, 0.88);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 13px;
  box-shadow: var(--shadow);
  transition: opacity 220ms ease, transform 220ms ease;
}

.protect-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.07);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}

select option {
  color: #071214;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(244, 241, 232, 0.11);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(240px, 0.9fr) minmax(260px, 1.15fr);
  gap: clamp(22px, 4vw, 54px);
  padding: 54px clamp(20px, 6vw, 92px) 38px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 182, 106, 0.1), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(37, 183, 164, 0.1), transparent 26%),
    #050c0d;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.055);
  color: var(--gold);
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 200ms ease, transform 200ms ease;
}

.footer-links a:hover {
  border-color: rgba(216, 182, 106, 0.48);
  transform: translateY(-2px);
}

.legal {
  justify-self: end;
  max-width: 760px;
  font-size: 12px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  color: rgba(244, 241, 232, 0.72);
  font-size: 13px;
}

.footer-meta a {
  color: var(--gold);
  font-weight: 800;
}

.footer-mini {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: rgba(244, 241, 232, 0.58);
  font-size: 12px;
}

.cookie-consent {
  position: fixed;
  inset: auto clamp(14px, 3vw, 34px) clamp(14px, 3vw, 34px) auto;
  z-index: 80;
  width: min(520px, calc(100vw - 28px));
  border: 1px solid rgba(216, 182, 106, 0.38);
  background: rgba(7, 18, 20, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  padding: 22px;
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(130deg, rgba(216, 182, 106, 0.22), transparent 38%, rgba(37, 183, 164, 0.16));
  opacity: 0.42;
  pointer-events: none;
}

.cookie-consent > * {
  position: relative;
  z-index: 1;
}

.cookie-consent h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.cookie-consent p {
  color: rgba(244, 241, 232, 0.76);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-actions button,
.cookie-actions a {
  min-height: 42px;
  border: 1px solid rgba(216, 182, 106, 0.42);
  padding: 0 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cookie-accept {
  background: linear-gradient(135deg, #d8b66a, #f0dca4);
  color: #13201f;
}

.cookie-decline {
  display: inline-flex;
  align-items: center;
  background: rgba(244, 241, 232, 0.07);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(2.2%, -1.4%, 0);
  }
}

@keyframes loaderGrid {
  from {
    transform: perspective(700px) rotateX(62deg) translateY(8%);
  }
  to {
    transform: perspective(700px) rotateX(62deg) translateY(76px);
  }
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  from {
    transform: scale(0.96);
    opacity: 0.78;
  }
  to {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes loaderLogo {
  from {
    transform: translateY(0) scale(0.98);
    filter: saturate(1);
  }
  to {
    transform: translateY(-5px) scale(1.02);
    filter: saturate(1.18);
  }
}

@keyframes loaderProgress {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(250%);
  }
}

@keyframes tedPulse {
  0%, 100% {
    transform: scale(0.78);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-100%);
  }
}

@keyframes barGrow {
  from {
    transform: scaleY(0.08);
    opacity: 0.36;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes moneyFall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate3d(4vw, 112vh, 0) rotate(220deg);
    opacity: 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.86);
    opacity: 0.54;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes sendShine {
  0%, 35% {
    transform: translateX(-110%);
  }
  70%, 100% {
    transform: translateX(110%);
  }
}

@keyframes navGoldSweep {
  0%, 100% {
    opacity: 0.34;
    transform: scaleX(0.56);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes navLogoGlow {
  from {
    box-shadow: 0 0 20px rgba(216, 182, 106, 0.2), 0 0 0 5px rgba(216, 182, 106, 0.035);
  }
  to {
    box-shadow: 0 0 34px rgba(216, 182, 106, 0.38), 0 0 0 8px rgba(216, 182, 106, 0.06);
  }
}

@keyframes navButtonShine {
  0%, 42% {
    transform: translateX(-120%);
  }
  74%, 100% {
    transform: translateX(120%);
  }
}

@keyframes mobileMenuOpen {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes successPop {
  from {
    transform: scale(0.4) rotate(-18deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes orbitFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-34px) rotate(12deg);
  }
}

.gateway-card {
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.52), rgba(7, 18, 20, 0.82)),
    url("assets/nexum-hero.png") center / cover,
    linear-gradient(180deg, rgba(244, 241, 232, 0.07), rgba(244, 241, 232, 0.025)),
    rgba(7, 18, 20, 0.74);
}

.gateway-card:nth-child(2) { background-position: center, 38% 45%, center; }
.gateway-card:nth-child(3) { background-position: center, 72% 44%, center; }
.gateway-card:nth-child(4) { background-position: center, 50% 68%, center; }

.about-points div {
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.055);
  padding: 12px 14px;
}

.about-points span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.about-points p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.team-card {
  min-height: 360px;
  background:
    linear-gradient(160deg, rgba(7, 18, 20, 0.78), rgba(13, 36, 39, 0.9)),
    url("assets/nexum-hero.png") center / cover;
}

.team-logo {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  object-fit: cover;
  opacity: 0.42;
  border: 1px solid rgba(216, 182, 106, 0.34);
  box-shadow: 0 0 18px rgba(216, 182, 106, 0.14);
}

.team-card p {
  position: relative;
  color: rgba(244, 241, 232, 0.74);
  margin: 0 0 18px;
}

.live-message {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 18, 20, 0.9), rgba(13, 36, 39, 0.82)),
    url("assets/nexum-hero.png") center / cover;
}

.live-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 106, 0.08), transparent);
  animation: sendShine 5s ease-in-out infinite;
}

.message-logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid rgba(216, 182, 106, 0.38);
  box-shadow: 0 0 34px rgba(216, 182, 106, 0.18);
  margin-bottom: 18px;
}

.message-heading small {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(37, 183, 164, 0.28);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.home-market-intel {
  padding: 34px 0;
  overflow: hidden;
}

.home-market-strip {
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(7, 18, 20, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.exchange-marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(216, 182, 106, 0.18);
  border-bottom: 1px solid rgba(216, 182, 106, 0.18);
  background: rgba(7, 18, 20, 0.82);
}

.exchange-track {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  animation: tickerMove 24s linear infinite;
  white-space: nowrap;
}

.exchange-track span {
  color: rgba(244, 241, 232, 0.78);
  font-weight: 900;
}

.exchange-track b {
  color: var(--teal);
  font-weight: 900;
}

.wealth-card,
.solution-card,
.insight-card,
.timeline-item,
.project-card,
.legal-tile,
.doc-card,
.narrative-card,
.map-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.86), rgba(13, 36, 39, 0.74)),
    url("assets/nexum-hero.png") center / cover;
}

.wealth-card:nth-child(1) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.9), rgba(92, 70, 26, 0.58)),
    url("assets/nexum-hero.png") 24% 30% / cover;
}

.wealth-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(16, 78, 72, 0.55)),
    url("assets/nexum-hero.png") 72% 42% / cover;
}

.wealth-card:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(78, 39, 26, 0.52)),
    url("assets/nexum-hero.png") 52% 76% / cover;
}

.solution-card:nth-child(1) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.9), rgba(37, 183, 164, 0.2)),
    url("assets/nexum-hero.png") 18% 36% / cover;
}

.solution-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.9), rgba(216, 182, 106, 0.18)),
    url("assets/nexum-hero.png") 82% 36% / cover;
}

.solution-card:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.9), rgba(82, 116, 182, 0.14)),
    url("assets/nexum-hero.png") 48% 68% / cover;
}

.solution-card:nth-child(4) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.9), rgba(182, 107, 82, 0.15)),
    url("assets/nexum-hero.png") 62% 22% / cover;
}

.insight-card:nth-child(1),
.timeline-item:nth-child(1),
.legal-tile:nth-child(1),
.project-card:nth-child(1),
.narrative-card:nth-child(1) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(37, 183, 164, 0.2)),
    url("assets/nexum-hero.png") 22% 42% / cover;
}

.insight-card:nth-child(2),
.timeline-item:nth-child(2),
.legal-tile:nth-child(2),
.project-card:nth-child(2),
.narrative-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(216, 182, 106, 0.18)),
    url("assets/nexum-hero.png") 72% 34% / cover;
}

.insight-card:nth-child(3),
.timeline-item:nth-child(3),
.legal-tile:nth-child(3),
.project-card:nth-child(3),
.narrative-card:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(87, 42, 34, 0.2)),
    url("assets/nexum-hero.png") 46% 78% / cover;
}

.timeline-item:nth-child(4),
.legal-tile:nth-child(4),
.project-card:nth-child(4) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(68, 80, 132, 0.18)),
    url("assets/nexum-hero.png") 58% 22% / cover;
}

.map-card:nth-child(1) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(216, 182, 106, 0.14)),
    url("assets/nexum-hero.png") 66% 34% / cover;
}

.map-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(37, 183, 164, 0.14)),
    url("assets/nexum-hero.png") 28% 64% / cover;
}

.map-card:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(7, 18, 20, 0.88), rgba(182, 107, 82, 0.14)),
    url("assets/nexum-hero.png") 78% 72% / cover;
}

.wealth-card::before,
.solution-card::after,
.insight-card::after,
.timeline-item::after,
.project-card::before,
.legal-tile::before,
.narrative-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(216, 182, 106, 0.22);
  background: radial-gradient(circle, rgba(216, 182, 106, 0.14), transparent 68%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

.solution-card::after,
.insight-card::after,
.timeline-item::after,
.project-card::before,
.legal-tile::before,
.narrative-card::before {
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.18), rgba(37, 183, 164, 0.08)),
    url("assets/nexum-logo.png") center / cover;
  opacity: 0.66;
}

.central-bank-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.central-bank-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(7, 18, 20, 0.82), rgba(13, 36, 39, 0.74)),
    url("assets/nexum-hero.png") center / cover;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease;
}

.central-bank-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 182, 106, 0.45);
}

.central-bank-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.central-bank-card h3 {
  font-size: 25px;
  line-height: 1.1;
}

.central-bank-card p {
  color: var(--muted);
}

.site-footer > div:first-child img.footer-logo {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border: 1px solid rgba(216, 182, 106, 0.34);
  box-shadow: 0 0 30px rgba(216, 182, 106, 0.18);
  margin-bottom: 14px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background:
      radial-gradient(circle at 18% 0%, rgba(216, 182, 106, 0.18), transparent 34%),
      rgba(7, 18, 20, 0.97);
    border: 1px solid rgba(216, 182, 106, 0.28);
    box-shadow: var(--shadow), 0 0 50px rgba(216, 182, 106, 0.12);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    backdrop-filter: blur(22px);
  }

  .main-nav.open {
    display: flex;
    animation: mobileMenuOpen 260ms ease both;
  }

  .nav-group {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 10px;
    background: rgba(244, 241, 232, 0.045);
    box-shadow: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .language-current {
    min-width: 58px;
    min-height: 42px;
  }

  .language-menu {
    right: -46px;
    width: min(214px, calc(100vw - 28px));
  }

  .solution-grid,
  .wealth-grid,
  .gateway-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics,
    .contact,
    .intro,
    .about-layout,
      .projects-home-hero,
      .team-grid,
      .chairman-message,
      .project-feature,
      .project-hub-grid,
      .market-layout,
      .central-bank-grid,
      .ekap-head,
      .ted-panel,
      .project-submit,
    .map-grid,
    .project-grid,
    .narrative-grid,
    .legal-grid {
      grid-template-columns: 1fr;
    }

      .ekap-actions {
        align-items: flex-start;
        flex-direction: column;
      }

      .projects-home-hero {
        min-height: auto;
        padding-top: 126px;
      }

      .market-widget,
      .market-brief {
        min-height: auto;
      }

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

  .legal {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: 104px 16px 86px;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(48px, 18vw, 72px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

    .hero-actions,
    .data-controls,
    .cookie-actions,
    .project-intake-form {
      flex-direction: column;
      grid-template-columns: 1fr;
    }

  .primary-action,
  .secondary-action,
  .cookie-actions button,
  .cookie-actions a {
    width: 100%;
  }

  .hero-metrics,
  .wealth-grid,
  .gateway-grid,
  .team-grid,
  .solution-grid,
  .timeline,
  .insight-grid,
  .risk-grid,
  .site-footer,
  .map-grid,
  .project-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .gateway-card,
  .wealth-card,
  .solution-card,
  .insight-card,
  .timeline-item,
  .team-card {
    min-height: auto;
  }

  .gateway-card b {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }

  .compact-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .compact-hero .section-heading {
    width: 100%;
    max-width: 100%;
  }

  .compact-hero h1,
  .proof-panel h2,
  .project-feature h2,
  .message-heading h2,
  .doc-card h1 {
    font-size: clamp(38px, 12vw, 56px);
    overflow-wrap: anywhere;
  }

  section {
    padding-inline: 16px;
  }

  .contact-form,
  .proof-panel,
  .doc-card,
  .thanks-card {
    padding: 22px;
  }

  .map-card iframe {
    height: 280px;
  }

  .site-footer {
    padding: 38px 16px 28px;
  }

  .dashboard-head {
    display: grid;
  }

  .chart-wrap {
    gap: 9px;
  }

  .legal {
    justify-self: start;
  }

  .footer-mini {
    display: grid;
  }

  .cookie-consent {
    inset: auto 12px 12px 12px;
    width: auto;
    padding: 18px;
  }

  .contact-lines span {
    overflow-wrap: anywhere;
  }

  .about-story {
    column-count: 1;
  }

  .about-quote {
    position: relative;
    top: auto;
  }

  .message-heading {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .thanks-actions {
    display: grid;
  }

  .proof-actions {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 13px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-metrics strong {
    font-size: 34px;
  }

  .ticker-track {
    padding-block: 12px;
  }
}

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