:root {
  color-scheme: dark;
  --bg: #07080b;
  --bg-2: #0c0f13;
  --panel: rgba(17, 20, 25, 0.74);
  --panel-solid: #111419;
  --panel-2: #171b21;
  --text: #f5f1e8;
  --muted: #a9adad;
  --dim: #747978;
  --gold: #d7b45b;
  --gold-2: #f2d680;
  --silver: #ccd4da;
  --copper: #c17645;
  --teal: #20c7b2;
  --red: #ef4d3f;
  --green: #7ed39c;
  --line: rgba(239, 220, 156, 0.2);
  --line-2: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 180, 91, 0.1), transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(193, 118, 69, 0.1), transparent 28%),
    radial-gradient(circle at 68% 72%, rgba(32, 199, 178, 0.08), transparent 26%),
    linear-gradient(180deg, #050609, #0b0d11 45%, #07080b);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-dark {
  background: #050609;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav.scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  background: rgba(5, 6, 9, 0.82);
  border-color: var(--line-2);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 180, 91, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(215, 180, 91, 0.18);
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s var(--ease);
}

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

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-crm {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 199, 178, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--teal);
  background: rgba(32, 199, 178, 0.08);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-crm:hover {
  border-color: rgba(32, 199, 178, 0.72);
  background: rgba(32, 199, 178, 0.14);
  transform: translateY(-1px);
}

.lang-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 78px;
  height: 36px;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
}

.lang-switch span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.lang-switch span.active {
  background: var(--gold);
  color: #10100d;
}

.menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11100b;
  box-shadow: 0 18px 42px rgba(215, 180, 91, 0.18);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 42px;
  padding: 138px 0 36px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.72;
  transform: scale(1.03);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.96) 0%, rgba(5, 6, 9, 0.78) 38%, rgba(5, 6, 9, 0.2) 72%, rgba(5, 6, 9, 0.78) 100%),
    radial-gradient(circle at 68% 43%, transparent 0 18%, rgba(5, 6, 9, 0.44) 50%, rgba(5, 6, 9, 0.86) 100%);
}

.orbit {
  position: absolute;
  z-index: 2;
  right: 10%;
  top: 23%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(215, 180, 91, 0.18);
  border-radius: 50%;
  animation: orbitSpin 22s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px var(--gold);
}

.orbit::before {
  left: 16%;
  top: 10%;
}

.orbit::after {
  right: 8%;
  bottom: 24%;
  background: var(--copper);
  box-shadow: 0 0 28px var(--copper);
}

.orbit-two {
  width: 330px;
  height: 330px;
  right: 17%;
  top: 31%;
  border-color: rgba(204, 212, 218, 0.16);
  animation-duration: 16s;
  animation-direction: reverse;
}

.capital-line {
  position: absolute;
  z-index: 2;
  right: 12%;
  top: 42%;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 180, 91, 0.86), transparent);
  transform: rotate(-18deg);
  opacity: 0.55;
  animation: pulseLine 4.5s ease-in-out infinite;
}

.line-two {
  top: 57%;
  right: 4%;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(193, 118, 69, 0.78), transparent);
  animation-delay: 1.2s;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  align-items: center;
  gap: 72px;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 0.96;
}

h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 36px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(245, 241, 232, 0.76);
}

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

.hero-buttons .btn {
  min-height: 54px;
  padding-inline: 30px;
}

.command-panel {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 20, 25, 0.78), rgba(8, 9, 12, 0.64));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.panel-top span {
  font-weight: 900;
  color: var(--gold-2);
}

.panel-top small {
  color: var(--muted);
  text-align: right;
}

.metric-stack {
  display: grid;
}

.metric-stack div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-2);
}

.metric-stack div:last-child {
  border-bottom: 0;
}

.metric-stack strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  font-size: 26px;
}

.metric-stack span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.ticker {
  position: relative;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: auto;
  flex: 0 0 auto;
  height: 68px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: rgba(5, 6, 9, 0.62);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.ticker-track,
.fair-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: marquee 26s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 34px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 13px;
  white-space: nowrap;
}

.ticker-item strong {
  color: var(--gold-2);
}

.ticker-item em {
  color: var(--green);
  font-style: normal;
}

.split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 76px;
}

.section-kicker,
.section-head span,
.contact-copy > span,
.market-intro > span,
.modal-tag {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.copy-block p {
  max-width: 810px;
  font-size: 17px;
}

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

.pillar {
  min-height: 230px;
  padding: 34px 28px;
  background: rgba(17, 20, 25, 0.72);
}

.pillar .letter {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.pillar h3,
.service-card h3,
.trust-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p {
  max-width: 720px;
  font-size: 17px;
}

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

.service-card,
.trust-card,
.metal-card,
.asset-card,
.projection-card,
.form-shell,
.founder-card,
.map-card {
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 38px 34px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.service-card::before {
  content: attr(data-num);
  display: block;
  margin-bottom: 70px;
  color: rgba(215, 180, 91, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 104px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-card:hover,
.asset-card:hover,
.metal-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  background: rgba(25, 29, 35, 0.78);
}

.portfolio {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(215, 180, 91, 0.22), transparent 34%),
    radial-gradient(circle at 82% 42%, rgba(193, 118, 69, 0.22), transparent 32%),
    radial-gradient(circle at 55% 78%, rgba(32, 199, 178, 0.13), transparent 30%),
    linear-gradient(180deg, #090a0d, #101319 46%, #07080b);
}

.portfolio .section-head h2,
.portfolio .section-head p,
.portfolio .section-head span,
.portfolio-cockpit,
.asset-card {
  position: relative;
  z-index: 1;
}

.portfolio-head {
  max-width: 980px;
}

.map-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 15%, rgba(215, 180, 91, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(20, 24, 30, 0.9), rgba(8, 9, 12, 0.9));
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 70%);
}

.chile-line {
  position: absolute;
  left: 44%;
  top: 26px;
  width: 72px;
  height: 228px;
  border-left: 2px solid var(--gold);
  border-radius: 50% 30% 65% 20%;
  transform: rotate(15deg);
  box-shadow: 0 0 32px rgba(215, 180, 91, 0.32);
}

.pin {
  position: absolute;
  left: 54%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 12px;
}

.pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.pin-one {
  top: 42%;
}

.pin-two {
  top: 24%;
  left: 59%;
}

.pin-three {
  top: 55%;
  left: 46%;
}

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

.portfolio-cockpit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 28px;
}

.portfolio-cockpit div {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(21, 23, 29, 0.82);
  box-shadow: 0 22px 70px rgba(215, 180, 91, 0.08);
}

.portfolio-cockpit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease, filter 700ms ease;
}

.portfolio-cockpit div:hover img {
  transform: scale(1.09);
  filter: saturate(1.16) contrast(1.08);
}

.portfolio-cockpit div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.02) 0%, rgba(6, 7, 10, 0.4) 42%, rgba(6, 7, 10, 0.92) 100%),
    radial-gradient(circle at 20% 18%, rgba(245, 213, 116, 0.26), transparent 34%);
}

.portfolio-cockpit div:nth-child(2)::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.02) 0%, rgba(6, 7, 10, 0.42) 44%, rgba(6, 7, 10, 0.92) 100%),
    radial-gradient(circle at 22% 18%, rgba(204, 212, 218, 0.3), transparent 34%);
}

.portfolio-cockpit div:nth-child(3)::before {
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.02) 0%, rgba(6, 7, 10, 0.42) 44%, rgba(6, 7, 10, 0.92) 100%),
    radial-gradient(circle at 22% 18%, rgba(193, 118, 69, 0.34), transparent 34%);
}

.portfolio-cockpit strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.9;
}

.portfolio-cockpit div:nth-child(2) strong {
  color: var(--silver);
}

.portfolio-cockpit div:nth-child(3) strong {
  color: #f0a06d;
}

.portfolio-cockpit span,
.portfolio-cockpit em {
  position: relative;
  z-index: 2;
  display: block;
}

.portfolio-cockpit span {
  color: var(--text);
  font-weight: 900;
  font-size: 18px;
}

.portfolio-cockpit em {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.asset-card {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    rgba(18, 21, 27, 0.9);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.32);
}

.asset-card.copper {
  border-color: rgba(193, 118, 69, 0.3);
}

.asset-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(5, 6, 9, 0.2) 78%, rgba(5, 6, 9, 0.46)),
    var(--asset-bg) center / cover no-repeat,
    #050609;
  filter: brightness(1.18) saturate(1.32) contrast(1.08);
  transform: translateZ(0);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.asset-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.24) saturate(1.28) contrast(1.08);
  transform: scale(1.02);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  opacity: 0.22;
  mix-blend-mode: screen;
}

.asset-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0) 0%, rgba(5, 6, 9, 0.02) 54%, rgba(5, 6, 9, 0.3) 100%),
    linear-gradient(90deg, rgba(5, 6, 9, 0.02), transparent 44%, rgba(5, 6, 9, 0.08));
}

.asset-image-glow {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
  opacity: 0.86;
}

.asset-card:hover .asset-image,
.asset-card:hover .asset-image img {
  transform: scale(1.04);
  filter: brightness(1.28) saturate(1.42) contrast(1.1);
}

.asset-topline {
  padding: 24px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.asset-card > h3 {
  margin: 0 28px 12px;
  max-width: calc(100% - 56px);
  overflow-wrap: anywhere;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge,
.deal-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold-2);
  background: rgba(215, 180, 91, 0.06);
  font-size: 11px;
  font-weight: 900;
}

.badge.silver {
  color: var(--silver);
  border-color: rgba(204, 212, 218, 0.24);
}

.badge.copper,
.asset-card.copper .badge,
.asset-card.copper .deal-pill {
  color: #e4a06a;
  border-color: rgba(193, 118, 69, 0.34);
  background: rgba(193, 118, 69, 0.08);
}

.asset-loc {
  margin: 0 28px 22px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.5;
}

.asset-context {
  margin: 20px 28px;
  padding: 18px 20px;
  border-left: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.asset-context.highlight {
  border-color: var(--gold);
  background: rgba(215, 180, 91, 0.07);
  color: rgba(245, 241, 232, 0.78);
}

.asset-card.copper .asset-context.highlight {
  border-color: var(--copper);
  background: rgba(193, 118, 69, 0.08);
}

.asset-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 4px 28px 22px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}

.asset-data div {
  min-height: 76px;
  padding: 14px;
  background: rgba(8, 10, 13, 0.72);
}

.asset-data small {
  display: block;
  margin-bottom: 5px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-data span {
  color: rgba(245, 241, 232, 0.9);
  font-size: 13px;
  line-height: 1.35;
}

.asset-section {
  margin: 0 28px 20px;
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.025);
}

.asset-section strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 13px;
}

.asset-section p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.neighbors {
  margin: 0 28px 20px;
}

.neighbors strong {
  color: var(--gold-2);
  font-size: 13px;
}

.neighbors ul {
  padding-left: 17px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.qp {
  margin-left: 28px;
  margin-right: 28px;
  margin-top: auto;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.asset-disclaimer {
  margin: 14px 28px 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 11.5px;
  line-height: 1.55;
}

.deal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 28px;
}

.asset-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 6px 28px 0;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line-2);
}

.asset-foot em {
  max-width: 50%;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.35;
}

.portfolio-note {
  margin-top: 28px;
  color: var(--dim);
  font-size: 13px;
}

.projection-note {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.55;
}

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

.trust-card {
  padding: 30px;
}

.trust-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  color: var(--gold-2);
}

.process {
  background: linear-gradient(180deg, rgba(17, 20, 25, 0.8), rgba(8, 9, 12, 0.72));
  border-block: 1px solid var(--line-2);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.step:hover .step-num {
  transform: scale(1.08);
  background: var(--gold);
  color: #11100b;
}

.step h3 {
  font-size: 19px;
}

.step p {
  font-size: 13px;
}

.market-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.market-visual {
  position: relative;
  min-height: 430px;
  margin-bottom: 58px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #050609;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.4);
}

.market-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  transform: scale(1.02);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.market-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.72), rgba(5, 6, 9, 0.12) 46%, rgba(5, 6, 9, 0.55)),
    linear-gradient(180deg, rgba(5, 6, 9, 0.04), rgba(5, 6, 9, 0.78));
}

.market-visual-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 150px);
  gap: 12px;
}

.pulse-stat {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 9, 0.62);
  backdrop-filter: blur(10px);
}

.pulse-stat::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 0;
  height: 36px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.28;
  animation: pulseLine 3s ease-in-out infinite;
}

.pulse-stat small,
.pulse-stat strong,
.pulse-stat span {
  display: block;
  position: relative;
  z-index: 1;
}

.pulse-stat small {
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.pulse-stat strong {
  margin: 8px 0 2px;
  color: var(--text);
  font-size: 28px;
}

.pulse-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pulse-stat.gold {
  color: var(--gold);
}

.pulse-stat.silver {
  color: var(--silver);
}

.pulse-stat.copper {
  color: var(--copper);
}

.market-intro {
  position: sticky;
  top: 116px;
}

.market-intro h2 {
  margin: 14px 0 22px;
}

.metals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metal-card {
  min-height: 430px;
  padding: 0 24px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(126, 211, 156, 0.12), transparent 30%),
    var(--panel);
}

.metal-media {
  position: relative;
  height: 170px;
  margin: 0 -24px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
  background: #08090c;
}

.metal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.metal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(9, 10, 13, 0.82) 100%),
    linear-gradient(90deg, rgba(9, 10, 13, 0.12), transparent 42%, rgba(9, 10, 13, 0.26));
}

.metal-card:hover .metal-media img {
  transform: scale(1.08);
  filter: saturate(1.16) contrast(1.07);
}

.metal-symbol {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.metal-card.silver .metal-symbol {
  color: var(--silver);
}

.metal-card.copper .metal-symbol {
  color: var(--copper);
}

.metal-price {
  margin: 18px 0 4px;
  font-size: 32px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
}

.metal-change {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.metal-card ul {
  margin: 24px 0 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.valuation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 34px;
  margin-top: 48px;
}

.valuation-copy {
  padding: 44px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(215, 180, 91, 0.08), rgba(255, 255, 255, 0.025));
}

.valuation-copy h3 {
  margin-bottom: 18px;
}

.projection-card {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-2);
  text-align: left;
  color: var(--muted);
  font-size: 13px;
}

th {
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

td:last-child {
  color: var(--text);
  font-weight: 800;
}

.fairs {
  height: 76px;
  overflow: hidden;
  border-block: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.025);
}

.fair {
  padding: 0 34px;
  color: rgba(245, 241, 232, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  white-space: nowrap;
}

.fair::before {
  content: "◆";
  margin-right: 28px;
  color: var(--gold);
  font-size: 10px;
}

.contact {
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 180, 91, 0.08), transparent 32%),
    linear-gradient(180deg, #07080b, #0d1014);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 52px;
}

.contact-copy h2 {
  margin: 14px 0 20px;
}

.contact-facts {
  display: grid;
  gap: 1px;
  margin: 34px 0;
  border: 1px solid var(--line-2);
  background: var(--line-2);
}

.contact-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(17, 20, 25, 0.74);
}

.contact-facts small {
  color: var(--dim);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-facts a,
.contact-facts span {
  color: rgba(245, 241, 232, 0.88);
}

.founder-card {
  padding: 24px;
  border-left: 3px solid var(--gold);
}

.founder-card strong,
.founder-card span,
.founder-card small {
  display: block;
}

.founder-card span {
  margin: 6px 0;
  color: var(--gold-2);
}

.founder-card small {
  color: var(--muted);
  line-height: 1.5;
}

.form-shell {
  align-self: start;
  padding: 8px;
  background: rgba(17, 20, 25, 0.88);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 8px;
  background: var(--line-2);
}

.tab {
  min-height: 56px;
  border: 0;
  background: rgba(8, 10, 13, 0.8);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.tab.active {
  color: #11100b;
  background: var(--gold);
}

.inquiry-form,
#ndaForm {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 22px 24px 24px;
}

#ndaForm {
  display: grid;
  padding: 0;
  grid-template-columns: 1fr;
}

.inquiry-form.active {
  display: grid;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

label.wide,
.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: rgba(5, 6, 9, 0.8);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(5, 6, 9, 0.95);
}

.check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.check input {
  min-height: auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.success {
  display: none;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(126, 211, 156, 0.24);
  border-radius: var(--radius);
  background: rgba(126, 211, 156, 0.08);
  color: var(--text);
}

.success.show {
  display: grid;
}

.success strong {
  color: var(--green);
}

.success span {
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 76px 0 34px;
  background: #050609;
  border-top: 1px solid var(--line-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
  gap: 44px;
}

.foot-brand {
  margin-bottom: 18px;
}

.footer h4 {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 14px;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.legal {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 34px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}

.legal span,
.legal p {
  margin: 0;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.6;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(4, 5, 7, 0.8);
  backdrop-filter: blur(14px);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  overflow: auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111419;
  box-shadow: var(--shadow);
}

.modal h3 {
  margin: 12px 0 12px;
}

.modal p {
  margin-bottom: 24px;
}

.modal p strong {
  color: var(--gold-2);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes slowDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, 0.8%, 0);
  }
}

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

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.18;
    filter: blur(0);
  }
  50% {
    opacity: 0.76;
    filter: blur(0.4px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 16px;
  }

  .hero-grid,
  .portfolio-head,
  .market-layout,
  .valuation,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .command-panel {
    max-width: 560px;
  }

  .market-intro {
    position: relative;
    top: auto;
  }

  .metals,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-cockpit div {
    min-height: 280px;
  }

  .market-visual {
    min-height: 360px;
  }

  .market-visual-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-line::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    text-align: left;
  }

  .step-num {
    margin: 0;
  }
}

@media (max-width: 820px) {
  .nav {
    padding-inline: 18px;
    gap: 10px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: rgba(5, 6, 9, 0.96);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .menu {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 128px;
    padding-bottom: 30px;
  }

  .hero-grid {
    width: min(100% - 28px, var(--max));
    gap: 38px;
  }

  .command-panel {
    max-width: none;
  }

  .panel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .panel-top small {
    text-align: left;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-media::before {
    background: linear-gradient(90deg, rgba(5, 6, 9, 0.96), rgba(5, 6, 9, 0.68));
  }

  .orbit,
  .capital-line {
    opacity: 0.38;
  }

  .split,
  .asset-grid,
  .footer-grid,
  .legal {
    grid-template-columns: 1fr;
  }

  .asset-card {
    min-height: auto;
  }

  .asset-image {
    height: 220px;
  }

  .asset-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .asset-foot em {
    max-width: none;
  }

  .contact-grid {
    gap: 36px;
  }

  .contact-facts div,
  .metric-stack div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 82px 0;
  }

  .brand {
    font-size: 24px;
  }

  .lang-switch {
    width: 70px;
  }

  h1 {
    max-width: 100%;
    font-size: 39px;
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 38px;
  }

  .hero-buttons,
  .hero-buttons .btn,
  .btn {
    width: 100%;
  }

  .ticker {
    height: auto;
    min-height: 58px;
  }

  .ticker-item {
    gap: 8px;
    padding: 0 20px;
    font-size: 12px;
  }

  .pillars,
  .trust-grid,
  .asset-data,
  .inquiry-form,
  .portfolio-cockpit,
  .market-visual-overlay {
    grid-template-columns: 1fr;
  }

  .portfolio-cockpit div {
    min-height: 260px;
  }

  .metal-media {
    height: 150px;
  }

  .pillar,
  .asset-card,
  .service-card,
  .valuation-copy,
  .form-shell .inquiry-form,
  .modal {
    padding: 24px;
  }

  .asset-card {
    padding: 0;
  }

  .asset-image {
    height: 198px;
  }

  .asset-topline {
    padding: 20px 20px 0;
  }

  .asset-card > h3 {
    margin-left: 20px;
    margin-right: 20px;
    max-width: calc(100% - 40px);
  }

  .asset-loc,
  .asset-context,
  .asset-data,
  .neighbors,
  .qp,
  .deal-pills {
    margin-left: 20px;
    margin-right: 20px;
  }

  .asset-foot {
    margin-left: 20px;
    margin-right: 20px;
  }

  .market-visual {
    min-height: 520px;
  }

  .market-visual img {
    object-position: 58% center;
  }

  .market-visual-overlay {
    gap: 8px;
  }

  .pulse-stat {
    min-height: 86px;
    padding: 12px 14px;
  }

  .pulse-stat small {
    font-size: 18px;
  }

  .pulse-stat strong {
    font-size: 22px;
  }

  .form-shell {
    padding: 6px;
  }

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

  .contact-facts div {
    padding: 16px;
  }

  .modal {
    padding-top: 48px;
  }
}
