/* RK GLOBAL — MAIN STYLES */
:root {
  --bg: #030806;
  --gold: #f4bd3f;
  --gold-light: #ffe79a;
  --blue: #168cff;
  --cyan: #20e8ff;
  --green: #00e99a;
  --white: #fff;
  --text: #edf5f1;
  --heading: "Playfair Display", serif;
  --body: "Inter", sans-serif;
  --gradient: linear-gradient(
    110deg,
    var(--gold-light),
    var(--gold),
    var(--green),
    var(--cyan)
  );
  --ease: 0.35s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  max-width: 1320px;
}
.section {
  position: relative;
  padding: 110px 0;
}
.section-title {
  font-family: var(--heading);
  font-weight: 600;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(244, 189, 63, 0.35);
}
.section-subtitle:before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 14px rgba(244, 189, 63, 0.5);
}
.text-gradient {
  background: var(--gradient);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #020604;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 63, 0.13),
    rgba(0, 233, 154, 0.04),
    transparent 70%
  );
  filter: blur(20px);
  animation: loaderGlow 3s ease-in-out infinite alternate;
}
.loader-logo {
  position: relative;
  z-index: 3;
  width: 150px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 50px rgba(244, 189, 63, 0.15);
  animation: loaderLogo 1s ease both;
}
.loader-orbit {
  position: absolute;
  border: 1px solid rgba(244, 189, 63, 0.2);
  border-radius: 50%;
  animation: orbit 10s linear infinite;
}
.loader-orbit:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: -4px;
  left: 50%;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}
.loader-orbit.orbit-one {
  width: 360px;
  height: 360px;
}
.loader-orbit.orbit-two {
  width: 450px;
  height: 450px;
  border-color: rgba(0, 233, 154, 0.12);
  animation-duration: 15s;
  animation-direction: reverse;
}
.loader-progress {
  position: relative;
  z-index: 3;
  width: 180px;
  height: 2px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.loader-progress span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--cyan));
  box-shadow: 0 0 15px var(--green);
  animation: loaderProgress 1.5s ease-in-out infinite;
}
.preloader small {
  position: relative;
  z-index: 3;
  margin-top: 12px;
  color: #718078;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--ease);
}
.site-header .navbar {
  min-height: 88px;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(3, 8, 6, 0.9);
  border-bottom: 1px solid rgba(244, 189, 63, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.brand-logo {
  width: 185px;
  padding: 5px 8px;
  background: #fff;
  border-radius: 9px;
  transition: var(--ease);
}
.brand-logo:hover {
  box-shadow: 0 0 25px rgba(244, 189, 63, 0.18);
}
.navbar-nav {
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 10px 13px !important;
  color: #fcfcfc !important;
  font-size: 14px;
  font-weight: 500;
  transition: var(--ease);
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  transform: translateX(-50%);
  transition: var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}
.nav-link:hover:after,
.nav-link.active:after {
  width: 20px;
}
.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: var(--ease);
}
.header-btn {
  padding: 8px 16px;
  color: var(--white);
  border: 1px solid rgba(244, 189, 63, 0.55);
  box-shadow: 0 0 20px rgba(244, 189, 63, 0.05);
}
.header-btn:hover {
  color: #050a07;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(244, 189, 63, 0.3);
}
.navbar-toggler {
  color: var(--gold);
  border: 1px solid rgba(244, 189, 63, 0.3);
  padding: 7px 10px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(244, 189, 63, 0.12);
}

/* MARKET TICKER */
.market-ticker {
  position: relative;
  z-index: 900;
  height: 46px;
  margin-top: 88px;
  display: flex;
  overflow: hidden;
  background: #050e0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(244, 189, 63, 0.14);
}
.ticker-label {
  min-width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(244, 189, 63, 0.025);
}
.ticker-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
  animation: pulse 1.6s infinite;
}
.ticker-window {
  flex: 1;
  overflow: hidden;
}
.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  min-width: 175px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
}
.ticker-item b {
  color: #91a099;
  font-size: 12px;
}
.ticker-item strong {
  color: #fff;
}
.ticker-item em {
  color: var(--green);
  font-style: normal;
  font-size: 10px;
  text-shadow: 0 0 10px rgba(0, 233, 154, 0.35);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100svh - 134px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(10, 47, 65, 0.48), transparent 32%),
    radial-gradient(
      circle at 82% 65%,
      rgba(0, 233, 154, 0.08),
      transparent 28%
    ),
    #020705;
}
.hero-bg,
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 72%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-glow-gold {
  width: 550px;
  height: 550px;
  right: 15%;
  top: 5%;
  background: rgba(244, 189, 63, 0.09);
}
.hero-glow-blue {
  width: 500px;
  height: 500px;
  right: 5%;
  bottom: -20%;
  background: rgba(22, 140, 255, 0.09);
}
.hero-glow-green {
  width: 400px;
  height: 400px;
  left: -250px;
  bottom: 0;
  background: rgba(0, 233, 154, 0.06);
}
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 40px 0;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(244, 189, 63, 0.3);
}
.hero-eyebrow > span {
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 14px var(--gold);
}
.hero-eyebrow i {
  color: var(--cyan);
  animation: sparkle 2s ease-in-out infinite;
}
.hero h1 {
  max-width: 620px;
  margin-top: 22px;
  font-family: var(--heading);
  font-size: clamp(58px, 6.5vw, 91px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -3px;
  color: #fff;
  text-shadow: 0 12px 45px rgba(0, 0, 0, 0.5);
  overflow: visible;
}
.hero h1 span {
  display: block;
  width: auto;
  max-width: 100%;
  color: #f4bd3f;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #f4bd3f;
  text-shadow: 0 0 25px rgba(244, 189, 63, 0.12);
  animation: none;
  filter: none;
}
.hero h1 small {
  display: block;
  margin-top: 18px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 8px;
  color: #aab6b1;
}
.hero-description {
  max-width: 520px;
  margin-top: 27px;
  color: #a1b0aa;
  font-size: 12px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
}
.btn-gold {
  position: relative;
  overflow: hidden;
  padding: 14px 21px;
  color: #071009;
  background: linear-gradient(
    110deg,
    var(--gold),
    var(--gold-light),
    var(--gold),
    var(--green)
  );
  background-size: 250% auto;
  box-shadow:
    0 10px 30px rgba(244, 189, 63, 0.2),
    0 0 35px rgba(244, 189, 63, 0.08);
  animation: buttonGradient 5s linear infinite;
}
.btn-gold:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-20deg);
  animation: buttonShine 3.5s infinite;
}
.btn-gold:hover {
  color: #071009;
  transform: translateY(-3px);
  box-shadow:
    0 15px 40px rgba(244, 189, 63, 0.35),
    0 0 40px rgba(0, 233, 154, 0.12);
}
.btn-story {
  padding: 14px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}
.btn-story i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #071009;
  background: var(--gold);
  border-radius: 50%;
  font-size: 9px;
}
.btn-story:hover {
  color: var(--gold-light);
  border-color: rgba(244, 189, 63, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(244, 189, 63, 0.1);
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}
.hero-metrics div strong,
.hero-metrics div span {
  display: block;
}
.hero-metrics strong {
  color: var(--gold-light);
  font: 600 27px var(--heading);
  text-shadow: 0 0 18px rgba(244, 189, 63, 0.3);
}
.hero-metrics span {
  margin-top: 3px;
  color: #64766d;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.hero-metrics > i {
  width: 1px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(244, 189, 63, 0.5),
    transparent
  );
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  width: 100%;
  height: 560px;
}
.hero-globe-wrap {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: globeFloat 7s ease-in-out infinite;
}
.globe-aura {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 63, 0.2),
    rgba(22, 140, 255, 0.08),
    transparent 68%
  );
  filter: blur(25px);
  animation: auraPulse 4s ease-in-out infinite alternate;
}
.hero-globe-image {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(244, 189, 63, 0.22))
    drop-shadow(0 0 80px rgba(22, 140, 255, 0.12));
  animation: globeImagePulse 5s ease-in-out infinite alternate;
}
.globe-orbit {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-gold {
  width: 560px;
  height: 160px;
  border-color: rgba(244, 189, 63, 0.55);
  transform: translate(-50%, -50%) rotate(-10deg);
  box-shadow: 0 0 20px rgba(244, 189, 63, 0.08);
  animation: orbitTilt 9s ease-in-out infinite;
}
.orbit-blue {
  width: 590px;
  height: 200px;
  border-color: rgba(22, 140, 255, 0.38);
  transform: translate(-50%, -50%) rotate(18deg);
  animation: orbitTiltBlue 11s ease-in-out infinite;
}
.orbit-green {
  width: 520px;
  height: 390px;
  border-color: rgba(0, 233, 154, 0.22);
  transform: translate(-50%, -50%) rotate(-38deg);
  animation: orbitVertical 15s linear infinite;
}
.globe-node {
  position: absolute;
  z-index: 5;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 20px var(--gold),
    0 0 40px rgba(244, 189, 63, 0.4);
  animation: nodePulse 2s infinite;
}
.node-one {
  top: 20%;
  left: 66%;
}
.node-two {
  top: 59%;
  left: 25%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
  animation-delay: -0.7s;
}
.node-three {
  top: 71%;
  left: 73%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
  animation-delay: -1.3s;
}

/* ASSET ORBIT — PARENT ROTATES, CARDS COUNTER-ROTATE */
.hero-asset-orbit {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-asset-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 190px;
  min-height: 58px;
  padding: 9px 12px;
  background: rgba(5, 13, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  pointer-events: auto;
}

.hero-asset-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(244, 189, 63, 0.55);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(244, 189, 63, 0.12);
}

.hero-asset-card .asset-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
}

.hero-asset-card div:nth-child(2) {
  min-width: 0;
}

.hero-asset-card small {
  display: block;
  margin-bottom: 2px;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #879991;
}

.hero-asset-card strong {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-asset-card .asset-arrow {
  margin-left: auto;
  font-size: 11px;
  color: #879991;
}
.asset-real-estate .asset-icon {
  color: #f4bd3f;
  background: rgba(244, 189, 63, 0.12);
  border: 1px solid rgba(244, 189, 63, 0.3);
}

.asset-stocks .asset-icon {
  color: #5bbcff;
  background: rgba(91, 188, 255, 0.12);
  border: 1px solid rgba(91, 188, 255, 0.3);
}

.asset-gold .asset-icon {
  color: #f4bd3f;
  background: rgba(244, 189, 63, 0.12);
  border: 1px solid rgba(244, 189, 63, 0.3);
}

.asset-crypto .asset-icon {
  color: #32d8ff;
  background: rgba(50, 216, 255, 0.12);
  border: 1px solid rgba(50, 216, 255, 0.3);
}

.asset-health .asset-icon {
  color: #ff8b8b;
  background: rgba(255, 100, 100, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.3);
}

.asset-education .asset-icon {
  color: #c18cff;
  background: rgba(193, 140, 255, 0.12);
  border: 1px solid rgba(193, 140, 255, 0.3);
}

.asset-food .asset-icon {
  color: #55d68a;
  background: rgba(85, 214, 138, 0.12);
  border: 1px solid rgba(85, 214, 138, 0.3);
}

/* REAL ESTATE */
.asset-real-estate {
  top: 3%;
  left: 13%;
}

/* STOCK MARKET */
.asset-stocks {
  top: 7%;
  right: 4%;
}

/* CRYPTO */
.asset-crypto {
  top: 37%;
  left: 0;
}

/* GOLD */
.asset-gold {
  top: 40%;
  right: 0;
}

/* HEALTH */
.asset-health {
  bottom: 12%;
  left: 7%;
}

/* EDUCATION */
.asset-education {
  bottom: 1%;
  left: 38%;
}

/* FOOD */
.asset-food {
  bottom: 12%;
  right: 7%;
}

/* HERO DETAILS */
.hero-side-label {
  position: absolute;
  z-index: 7;
  right: -10px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 17px;
  border-left: 1px solid rgba(244, 189, 63, 0.5);
  transform: translateY(-50%);
}
.hero-side-label span {
  color: #92752d;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.hero-side-label span:first-child {
  color: var(--gold-light);
}
.hero-brand-line {
  position: absolute;
  z-index: 7;
  bottom: 5px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  color: #b18a34;
  font-size: 6px;
  letter-spacing: 2px;
  transform: translateX(-50%);
}
.hero-brand-line span {
  width: 27px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.hero-light-trail {
  position: absolute;
  z-index: 1;
  width: 900px;
  height: 180px;
  border: 1px solid rgba(244, 189, 63, 0.2);
  border-radius: 50%;
  filter: blur(0.2px);
  pointer-events: none;
}
.trail-one {
  right: -250px;
  bottom: 4%;
  transform: rotate(-10deg);
  box-shadow: 0 0 30px rgba(244, 189, 63, 0.06);
  animation: trailMove 8s ease-in-out infinite;
}
.trail-two {
  right: -300px;
  bottom: 9%;
  border-color: rgba(22, 140, 255, 0.18);
  transform: rotate(13deg);
  animation: trailMoveTwo 10s ease-in-out infinite;
}
.hero-scroll {
  position: absolute;
  z-index: 8;
  left: 5%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9c7b2d;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.hero-scroll i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 189, 63, 0.35);
  border-radius: 50%;
  color: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: particleRise 6s linear infinite;
}
.hero-particles span:nth-child(1) {
  left: 7%;
  top: 35%;
}
.hero-particles span:nth-child(2) {
  left: 25%;
  top: 15%;
  animation-delay: -2s;
}
.hero-particles span:nth-child(3) {
  right: 8%;
  top: 25%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation-delay: -4s;
}
.hero-particles span:nth-child(4) {
  right: 30%;
  top: 10%;
  animation-delay: -1s;
}
.hero-particles span:nth-child(5) {
  left: 42%;
  bottom: 10%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation-delay: -3s;
}
.hero-particles span:nth-child(6) {
  left: 5%;
  bottom: 30%;
  animation-delay: -5s;
}
.hero-particles span:nth-child(7) {
  right: 40%;
  bottom: 15%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  animation-delay: -2.5s;
}
.hero-particles span:nth-child(8) {
  right: 12%;
  bottom: 40%;
  animation-delay: -4.5s;
}

/* ANIMATIONS */
@keyframes gradientMove {
  to {
    background-position: 250% center;
  }
}

@keyframes buttonGradient {
  to {
    background-position: 250% center;
  }
}
@keyframes buttonShine {
  0%,
  40% {
    left: -100%;
  }
  70%,
  100% {
    left: 140%;
  }
}
@keyframes sparkle {
  50% {
    transform: scale(1.3) rotate(12deg);
    filter: drop-shadow(0 0 8px var(--cyan));
  }
}
@keyframes globeFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}
@keyframes auraPulse {
  to {
    transform: scale(1.12);
    opacity: 0.7;
  }
}
@keyframes globeImagePulse {
  to {
    filter: drop-shadow(0 0 35px rgba(244, 189, 63, 0.25))
      drop-shadow(0 0 90px rgba(22, 140, 255, 0.15));
  }
}
@keyframes orbitTilt {
  50% {
    transform: translate(-50%, -50%) rotate(-4deg) scale(1.04);
  }
}
@keyframes orbitTiltBlue {
  50% {
    transform: translate(-50%, -50%) rotate(24deg) scale(1.03);
  }
}
@keyframes orbitVertical {
  to {
    transform: translate(-50%, -50%) rotate(322deg);
  }
}
@keyframes nodePulse {
  50% {
    transform: scale(1.8);
    opacity: 0.55;
  }
}
@keyframes trailMove {
  50% {
    transform: rotate(-7deg) translateY(-12px) scale(1.03);
  }
}
@keyframes trailMoveTwo {
  50% {
    transform: rotate(18deg) translateY(10px) scale(1.04);
  }
}
@keyframes particleRise {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}
@keyframes scrollBounce {
  50% {
    transform: translateY(5px);
  }
}
@keyframes assetOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes cardCounterRotate {
  from {
    rotate: 0deg;
  }
  to {
    rotate: -360deg;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(1.15);
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes loaderGlow {
  to {
    transform: scale(1.12);
    opacity: 0.7;
  }
}
@keyframes loaderLogo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes loaderProgress {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(240%);
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* ABOUT — LIGHT / DARK HYBRID */
.about-section {
  position: relative;
  overflow: hidden;
  color: #17231f;
  background: #f5f2ea;
}

.about-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.8), transparent 45%),
    radial-gradient(
      circle at 80% 50%,
      rgba(244, 189, 63, 0.12),
      transparent 30%
    );
}

.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-orb-gold {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 80px;
  background: rgba(244, 189, 63, 0.16);
}

.about-orb-blue {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -100px;
  background: rgba(32, 150, 255, 0.08);
}

.about-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 100px 1fr 280px;
  align-items: end;
  gap: 40px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(7, 26, 45, 0.12);
}

.about-index {
  color: rgba(7, 26, 45, 0.12);
  font-family: var(--heading);
  font-size: 100px;
  line-height: 0.7;
  letter-spacing: -7px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a57613;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c78b17, var(--cyan));
}

.about-heading h2 {
  max-width: 700px;
  margin: 18px 0 0;
  color: #071a2d;
  font-family: var(--heading);
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -3px;
}

.about-heading h2 span {
  display: block;
  color: #9b731e;
}

.about-top-copy {
  padding-left: 22px;
  border-left: 1px solid rgba(7, 26, 45, 0.2);
}

.about-top-copy span {
  color: #071a2d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-top-copy p {
  margin: 12px 0 0;
  color: #66716c;
  font-size: 10px;
  line-height: 1.8;
}

/* CONTENT */
.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
  min-height: 590px;
}

.about-text {
  padding: 75px 60px 75px 0;
}

.about-line-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a57613;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.about-line-title span {
  width: 25px;
  height: 2px;
  background: #c78b17;
}

.about-lead {
  max-width: 490px;
  margin: 25px 0 0;
  color: #071a2d;
  font-family: var(--heading);
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.about-text > p:not(.about-lead) {
  max-width: 470px;
  margin-top: 22px;
  color: #68746e;
  font-size: 11px;
  line-height: 1.9;
}

.about-text > p + p {
  margin-top: 12px !important;
}

.about-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 21px;
  color: #fff;
  background: #071a2d;
  border-radius: 50px;
  font-size: 8px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 26, 45, 0.15);
  transition: 0.35s ease;
}

.about-button i {
  color: #f4bd3f;
}

.about-button:hover {
  color: #071a2d;
  background: #f4bd3f;
  transform: translateY(-3px);
}

.about-panel {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 32px;
  color: #fff;
  background: #07131d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(7, 26, 45, 0.18);
}
.about-panel-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 189, 63, 0.06), transparent 35%),
    radial-gradient(
      circle at 90% 10%,
      rgba(32, 232, 255, 0.1),
      transparent 28%
    ),
    linear-gradient(145deg, #071a2d, #061018 65%, #041016);
}
.about-panel-bg:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(244, 189, 63, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(244, 189, 63, 0.025),
    0 0 0 90px rgba(244, 189, 63, 0.018);
}
.about-panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #d2d2d2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.about-panel-title {
  position: relative;
  z-index: 2;
  margin-top: 38px;
}
.about-panel-title small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 3px;
}
.about-panel-title h3 {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -1px;
}
.about-panel-title h3 span {
  color: var(--gold-light);
  text-shadow: 0 0 25px rgba(244, 189, 63, 0.18);
}
.about-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.market-card {
  position: relative;
  min-height: 82px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.market-card:hover {
  border-color: rgba(244, 189, 63, 0.35);
  background: rgba(244, 189, 63, 0.045);
  transform: translateY(-2px);
}
.market-card-large {
  grid-column: span 3;
  min-height: 92px;
}

.market-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.market-card-head span {
  font-size: 8px;
  letter-spacing: 1px;
  color: #dbdbdb;
}
.market-card-head i {
  font-size: 15px;
  color: var(--gold);
}

.market-card:nth-child(2) .market-card-head i {
  color: var(--cyan);
}
.market-card:nth-child(3) .market-card-head i {
  color: #ffe79a;
}
.market-card:nth-child(4) .market-card-head i {
  color: var(--green);
}
.market-card-content {
  position: absolute;
  left: 14px;
  bottom: 14px;
}
.market-card-content small {
  display: block;
  margin-bottom: 3px;
  color: #cdcdcd;
  font-size: 7px;
  letter-spacing: 1px;
}
.market-card-content strong {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.market-card-large .market-card-content strong {
  font-size: 21px;
}
.market-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 2px;
  background: var(--gold);
}

.about-panel-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-panel-number {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 30px;
  line-height: 1;
}
.about-panel-bottom div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-panel-bottom span {
  color: #5f716a;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.about-panel-bottom strong {
  color: #dce7e2;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about-panel-bottom > i {
  margin-left: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(244, 189, 63, 0.25);
  border-radius: 50%;
}
.about-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  color: #687a72;
  font-size: 6px;
  letter-spacing: 1.2px;
}
.hero-title {
  position: relative;
  z-index: 5;
  margin: 0;
  font-family: var(--heading);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -2.2px;
}
.hero-title > span {
  display: block;
  position: relative;
  z-index: 2;
}
.hero-title-white {
  color: #fff;
}
.hero-title-gold {
  margin-top: 4px;
  color: #f4bd3f;
  background: linear-gradient(100deg, #f4bd3f 0%, #ffe79a 48%, #d99b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-title small {
  display: block;
  margin: 17px 0 10px 2px;
  color: #aebbb5;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 7px;
  line-height: 1;
}
.about-us-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #f4f1e9;
  color: #071a2d;
}
.about-us-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(244, 189, 63, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(22, 140, 255, 0.08),
      transparent 25%
    );
}
.about-us-top {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 70px;
}
.about-us-number {
  color: rgba(7, 26, 45, 0.16);
  font-family: var(--heading);
  font-size: 90px;
  line-height: 0.8;
  letter-spacing: -5px;
}
.about-us-eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #a87816;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
}
.about-us-top h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2px;
}
.about-us-top h2 span {
  color: #b8861c;
}
.about-us-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.about-us-story {
  padding: 20px 0;
}
.about-us-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9b761d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.about-us-label:before {
  content: "";
  width: 35px;
  height: 1px;
  background: #c59b35;
}
.about-us-story h3 {
  max-width: 520px;
  margin: 35px 0 25px;
  font-family: var(--heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}
.about-us-story h3 strong {
  display: block;
  color: #9e7415;
  font-weight: 500;
}
.about-us-story p {
  max-width: 530px;
  margin: 0 0 18px;
  color: #68736f;
  font-size: 14px;
  line-height: 1.9;
}
.about-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 14px 20px;
  color: #fff;
  background: #071a2d;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.about-us-btn i {
  color: var(--gold);
}
.about-us-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 26, 45, 0.18);
}
.about-us-vision {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: #071a2d;
  color: #fff;
  border-radius: 4px 28px 4px 28px;
  box-shadow: 20px 25px 60px rgba(7, 26, 45, 0.16);
}
.about-us-vision:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  top: -130px;
  border: 1px solid rgba(244, 189, 63, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(244, 189, 63, 0.025);
}
.vision-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cdd2d0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.vision-header i {
  color: var(--gold);
}
.vision-statement {
  position: relative;
  display: grid;
  grid-template-columns: 40px 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vision-statement > span {
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
}
.vision-statement h4 {
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 500;
}
.vision-statement p {
  margin: 0;
  color: #cfcfcf;
  font-size: 10px;
  line-height: 1.6;
}
.vision-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  color: #586a63;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.vision-footer strong {
  color: #caa449;
  font-size: 6px;
}
.investments-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #07131d;
  color: #fff;
}
.investments-section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -300px;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 63, 0.08),
    transparent 68%
  );
}
.investments-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}
.investments-head .section-eyebrow {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3px;
}
.investments-head h2 {
  margin: 15px 0 0;
  font-family: var(--heading);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2px;
}
.investments-head h2 span {
  color: var(--gold-light);
}
.investments-head > p {
  max-width: 360px;
  margin: 0 0 5px;
  color: #ececec;
  font-size: 12px;
  line-height: 1.8;
}
.investment-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  min-height: 520px;
  gap: 14px;
}
.investment-feature,
.investment-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
}

.investment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 189, 63, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.investment-card > div {
  position: relative;
  z-index: 2;
}
.investment-card > div > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 1px;
}
.investment-feature:hover {
  color: #fff;
  border-color: rgba(244, 189, 63, 0.4);
  transform: translateY(-4px);
}
.investment-feature {
  min-height: 520px;
  padding: 32px;
  display: flex;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  background: #0b1d2b;
}
.investment-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 189, 63, 0.13), transparent 35%),
    radial-gradient(
      circle at 75% 45%,
      rgba(22, 140, 255, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, #0c2234, #06131d);
}
.investment-bg:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -110px;
  bottom: -150px;
  border: 1px solid rgba(244, 189, 63, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(244, 189, 63, 0.025),
    0 0 0 100px rgba(244, 189, 63, 0.018);
}
.investment-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #d6d6d6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}
.investment-top i {
  color: var(--gold);
  font-size: 16px;
}
.investment-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.investment-content small {
  color: var(--gold);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
}
.investment-content h3 {
  margin: 12px 0 18px;
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1.5px;
}
.investment-content h3 span {
  color: #fff0ad;
}
.investment-content p {
  max-width: 390px;
  margin: 0;
  color: #efefef;
  font-size: 12px;
  line-height: 1.8;
}
.investment-index {
  position: absolute;
  right: 25px;
  bottom: 5px;
  color: rgba(244, 189, 63, 0.08);
  font-family: var(--heading);
  font-size: 170px;
  line-height: 1;
}
.investment-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.investment-card {
  position: relative;
  min-height: 145px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.investment-card span {
  display: block;
  margin-bottom: 15px;
  color: #e6e6e6;
  font-size: 8px;
  font-weight: 800;
}
.investment-card small {
  display: block;
  margin-bottom: 4px;
  color: #879991;
  font-size: 6px;
  letter-spacing: 1px;
}
.investment-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.investment-card > i {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 11px;
  transition: 0.3s ease;
}
.investment-card:hover > i {
  background: var(--gold);
  color: #030806;
  border-color: var(--gold);
}
.investment-crypto {
  background: linear-gradient(120deg, #0a1823, #071d27);
}
.investment-crypto h3 {
  color: #5deaff;
}
.investment-gold {
  background: linear-gradient(120deg, #17180f, #101712);
}
.investment-gold h3 {
  color: #ffe79a;
}
.investment-stocks {
  background: linear-gradient(120deg, #071a18, #081914);
}
.investment-stocks h3 {
  color: #62ffc4;
}
.investments-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
  color: #d8d8d8;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 2px;
}
.investments-footer div {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(244, 189, 63, 0.3),
    rgba(255, 255, 255, 0.06)
  );
}
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #f4f1e9;
  color: #071a2d;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(244, 189, 63, 0.12),
      transparent 25%
    ),
    radial-gradient(circle at 0 90%, rgba(22, 140, 255, 0.06), transparent 25%);
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.contact-intro .section-eyebrow {
  color: #a87816;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3px;
}
.contact-intro h2 {
  margin: 18px 0 22px;
  font-family: var(--heading);
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2px;
}
.contact-intro h2 span {
  color: #b8861c;
}
.contact-intro > p {
  max-width: 470px;
  color: #69756f;
  font-size: 13px;
  line-height: 1.8;
}
.contact-details {
  margin-top: 45px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  color: #071a2d;
  text-decoration: none;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #a87816;
  border: 1px solid rgba(168, 120, 22, 0.25);
  border-radius: 50%;
}
.contact-detail small,
.contact-detail strong {
  display: block;
}
.contact-detail small {
  margin-bottom: 4px;
  color: #87918d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.contact-detail strong {
  font-size: 11px;
  font-weight: 600;
}
.contact-form-wrap {
  position: relative;
  padding: 35px;
  background: #071a2d;
  border-radius: 4px 28px 4px 28px;
  box-shadow: 20px 25px 60px rgba(7, 26, 45, 0.15);
}
.contact-form-wrap:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.contact-form-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 25px;
  color: #e6e6e6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-form-head i {
  color: var(--gold);
}
.contact-form {
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #eaeaea;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  outline: 0;
  font-family: var(--body);
  font-size: 11px;
  transition: 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #53655e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select {
  color: #71827b;
}
.form-group select option {
  color: #071a2d;
}
.form-group textarea {
  resize: vertical;
}
.contact-submit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 16px 18px;
  color: #071a2d;
  background: var(--gold);
  border: 0;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-submit i {
  font-size: 15px;
}
.contact-submit:hover {
  background: #ffe79a;
  transform: translateY(-2px);
}
.site-footer {
  position: relative;
  padding: 80px 0 25px;
  overflow: hidden;
  background: #030b10;
  color: #fff;
}
.site-footer:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -300px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 63, 0.08),
    transparent 65%
  );
}
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo img {
  width: 150px;
  height: auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 6px 4px;
}
.footer-brand p {
  max-width: 350px;
  margin: 22px 0;
  color: #dbdbdb;
  font-size: 11px;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #dbdbdb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: rgba(244, 189, 63, 0.4);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-links span {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.footer-links a {
  margin-bottom: 11px;
  color: #e8e8e8;
  font-size: 12px;
  text-decoration: none;
  transition: 0.25s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 25px;
  color: #bebebe;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-bottom div {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  color: #bebebe;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-bottom > span:last-child {
  text-align: right;
  color: #d69f0e;
}
.market-up {
  color: #00e99a !important;
}
.market-down {
  color: #ff626d !important;
}

.market-flat {
  color: #879991 !important;
}

.ticker-item strong {
  color: #f4f8f5;
  font-variant-numeric: tabular-nums;
}

.ticker-item em {
  min-width: 62px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.ticker-value-update {
  animation: tickerValueFlash 0.45s ease;
}

@keyframes tickerValueFlash {
  0% {
    opacity: 0.35;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* HERO */

.re-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(244, 189, 63, 0.09),
      transparent 30%
    ),
    linear-gradient(135deg, var(--re-bg), var(--re-bg-2));
}

.re-hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--re-gold);
  opacity: 0.06;
  filter: blur(90px);
}

.re-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

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

.re-eyebrow,
.re-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--re-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.re-eyebrow i,
.re-section-label i {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.re-hero h1 {
  margin: 23px 0;
  font-family: var(--re-heading);
  font-size: clamp(50px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -3px;
  text-wrap: balance;
}

.re-hero h1 span {
  display: block;
  color: var(--re-gold);
}

.re-hero-content > p {
  max-width: 580px;
  color: var(--re-muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}

.re-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.re-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 21px;
  background: var(--re-gold);
  color: #030806;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.re-primary-btn:hover {
  color: #030806;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(244, 189, 63, 0.16);
}

.re-text-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aab5b0;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.re-text-btn:hover {
  color: var(--re-gold);
}

.re-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 50px;
}

.re-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #617169;
  font-size: 9px;
  letter-spacing: 2px;
}

.re-meta i {
  color: var(--re-gold);
  font-size: 13px;
}

/* HERO VISUAL */

.re-visual {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
}

.re-circle {
  position: absolute;
  border: 1px solid rgba(244, 189, 63, 0.2);
  border-radius: 50%;
}

.circle-one {
  width: 70%;
  height: 70%;
}

.circle-two {
  width: 94%;
  height: 94%;
  border-style: dashed;
  opacity: 0.45;
}

.re-building {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 270px;
  padding: 16px 13px 0;
  background: linear-gradient(145deg, #17261f, #07100c);
  border: 1px solid rgba(244, 189, 63, 0.45);
  box-shadow:
    0 0 60px rgba(244, 189, 63, 0.1),
    inset 0 0 40px rgba(255, 255, 255, 0.025);
  transform: perspective(600px) rotateY(-12deg);
}

.re-building-top {
  position: absolute;
  top: -12px;
  left: 8px;
  right: 8px;
  height: 14px;
  border: 1px solid rgba(244, 189, 63, 0.45);
  background: #17261f;
  transform: skewX(-35deg);
}

.re-building-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.re-building-body span {
  height: 27px;
  border: 1px solid rgba(244, 189, 63, 0.25);
  background: rgba(244, 189, 63, 0.07);
}

.re-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--re-border);
  background: rgba(5, 13, 10, 0.9);
  backdrop-filter: blur(12px);
  color: #aab5b0;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.card-one {
  top: 19%;
  right: 0;
}

.card-one i {
  color: var(--re-gold);
  font-size: 17px;
}

.card-two {
  bottom: 18%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.card-two strong {
  color: #e8efeb;
  font-size: 10px;
}

.card-two small {
  color: #66756d;
  font-size: 8px;
}

/* WHY */

.re-why {
  padding: 105px 0 80px;
  background: #f2f4f1;
  color: #08100c;
}

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

.re-section-label {
  color: #697770;
}

.re-section-heading h2 {
  margin-top: 18px;
  font-family: var(--re-heading);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.re-section-heading h2 span {
  display: block;
  color: #b17b12;
}

.re-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ccd4cf;
}

.re-feature {
  min-height: 245px;
  padding: 32px 30px;
  border-right: 1px solid #ccd4cf;
}

.re-feature:last-child {
  border-right: 0;
}

.re-number {
  display: block;
  margin-bottom: 35px;
  color: #7d8983;
  font-size: 10px;
  letter-spacing: 2px;
}

.re-feature > i {
  font-size: 24px;
}

.re-feature h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.re-feature p {
  max-width: 290px;
  color: #69766f;
  font-size: 14px;
  line-height: 1.7;
}

.re-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ccd4cf;
}

.re-bottom-cta div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.re-bottom-cta span {
  color: #7b8781;
  font-size: 9px;
  letter-spacing: 3px;
}

.re-bottom-cta strong {
  font-family: var(--re-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   COMMON HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 8, 6, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-logo {
  display: flex;
  align-items: center;
  width: 145px;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

/* Investment Dropdown */

.investment-nav {
  position: relative;
}

.investment-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 230px;
  padding: 10px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(7, 16, 12, 0.98);
  border: 1px solid #193027;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.investment-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #07100c;
  border-left: 1px solid #193027;
  border-top: 1px solid #193027;
  transform: translateX(-50%) rotate(45deg);
}

.investment-dropdown a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 11px;
  color: #efefef;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.investment-dropdown a:last-child {
  border-bottom: 0;
}

.investment-dropdown a i {
  width: 20px;
  color: var(--gold);
  font-size: 15px;
}

.investment-dropdown a:hover {
  color: #fff;
  background: rgba(244, 189, 63, 0.06);
}

.investment-nav:hover .investment-dropdown,
.investment-nav.dropdown-open .investment-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.investment-nav:hover .investment-toggle i,
.investment-nav.dropdown-open .investment-toggle i {
  transform: rotate(180deg);
}
/* HEADER AUTH */

.header-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-register,
.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: 0.25s ease;
}

.header-register {
  color: #b7c2bd;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-register:hover {
  color: #fff;
  border-color: rgba(244, 189, 63, 0.4);
}

.header-login {
  color: #030806;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.header-login:hover {
  color: #030806;
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* MOBILE HEADER ACTIONS */

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-login {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #f4bd3f;
  border: 1px solid rgba(244, 189, 63, 0.3);
  border-radius: 50%;
  font-size: 17px;
  transition: 0.25s ease;
}

.mobile-login:hover {
  color: #030806;
  background: var(--gold);
}
/* =========================
   HERO ASSET ORBIT
========================= */

.hero-asset-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  animation: heroAssetOrbit 28s linear infinite;
  transform-origin: 50% 50%;
}

.hero-asset-card {
  animation: heroAssetCardCounter 28s linear infinite;
  will-change: transform;
}

/* ORBIT */
@keyframes heroAssetOrbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* COUNTER ROTATION */
@keyframes heroAssetCardCounter {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Centered cards need their own positioning */
.hero-asset-orbit .asset-real-estate,
.hero-asset-orbit .asset-education {
  margin-left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-asset-orbit,
  .hero-asset-card {
    animation: none !important;
  }
}
/* =========================================================
   COMMON INVESTMENT INNER PAGES
========================================================= */

.investment-page {
  overflow: hidden;
}

/* HERO */
.investment-hero {
  position: relative;
  min-height: calc(100svh - 134px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(244, 189, 63, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 233, 154, 0.05),
      transparent 25%
    ),
    #020705;
}

.investment-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
  filter: blur(100px);
  pointer-events: none;
}

.investment-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(circle at 75% 50%, #000, transparent 72%);
  pointer-events: none;
}

.investment-hero > .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 60px;
}

.investment-hero-content {
  max-width: 650px;
}

.investment-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: #687a72;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.investment-breadcrumb a {
  color: #9a7a2e;
}

.investment-breadcrumb i {
  color: #43534c;
  font-size: 7px;
}

.investment-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.investment-eyebrow i {
  color: var(--gold);
  font-size: 13px;
}

.investment-hero h1 {
  max-width: 680px;
  margin: 22px 0 25px;
  color: #fff;
  font-family: var(--heading);
  font-size: clamp(55px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -3px;
}

.investment-hero h1 span {
  display: block;
  color: var(--gold);
}

.investment-hero-content > p {
  max-width: 570px;
  margin: 0;
  color: #9eada7;
  font-size: 12px;
  line-height: 1.9;
}

.investment-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.investment-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  color: #d6dfdb;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  transition: 0.3s ease;
}

.investment-outline-btn:hover {
  color: var(--gold-light);
  border-color: rgba(244, 189, 63, 0.45);
  transform: translateY(-2px);
}

.investment-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.investment-stats div {
  min-width: 75px;
}

.investment-stats strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
}

.investment-stats span {
  display: block;
  margin-top: 4px;
  color: #607169;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.investment-stats > i {
  width: 1px;
  height: 28px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(244, 189, 63, 0.4),
    transparent
  );
}

/* HERO VISUAL */
.investment-hero-visual {
  position: relative;
  width: min(100%, 540px);
  height: 540px;
  margin: auto;
  display: grid;
  place-items: center;
}

.investment-visual-ring {
  position: absolute;
  border: 1px solid rgba(244, 189, 63, 0.18);
  border-radius: 50%;
}

.investment-visual-ring.ring-one {
  width: 55%;
  height: 55%;
}

.investment-visual-ring.ring-two {
  width: 78%;
  height: 78%;
  border-color: rgba(22, 140, 255, 0.16);
}

.investment-visual-ring.ring-three {
  width: 96%;
  height: 96%;
  border-style: dashed;
  border-color: rgba(0, 233, 154, 0.12);
}

.investment-floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 155px;
  padding: 11px 14px;
  background: rgba(5, 13, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.investment-floating-card i {
  color: var(--gold);
  font-size: 16px;
}

.investment-floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #617169;
  font-size: 6px;
  letter-spacing: 1.2px;
}

.investment-floating-card strong {
  display: block;
  color: #e9efec;
  font-size: 8px;
  font-weight: 600;
}

.investment-floating-card.card-one {
  top: 14%;
  right: 0;
}

.investment-floating-card.card-two {
  bottom: 18%;
  left: 0;
}

.investment-floating-card.card-three {
  bottom: 4%;
  right: 12%;
}

/* DETAILS */
.investment-details {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #071a2d;
  background: #f4f1e9;
}

.investment-details:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -300px;
  top: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 189, 63, 0.12),
    transparent 68%
  );
}

.investment-details-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 70px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(7, 26, 45, 0.12);
}

.investment-section-label {
  color: #a57613;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.investment-details-head h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: var(--heading);
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -2.5px;
}

.investment-details-head h2 span {
  display: block;
  color: #a87816;
}

.investment-details-head > p {
  margin: 0;
  color: #68746e;
  font-size: 11px;
  line-height: 1.9;
}

.investment-details-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding-top: 65px;
}

.investment-detail-intro {
  padding-right: 30px;
}

.investment-detail-intro > span {
  color: #9b761d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.investment-detail-intro h3 {
  max-width: 500px;
  margin: 25px 0 22px;
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
}

.investment-detail-intro h3 strong {
  display: block;
  color: #9e7415;
  font-weight: 500;
}

.investment-detail-intro p {
  max-width: 500px;
  margin: 0 0 15px;
  color: #68746e;
  font-size: 11px;
  line-height: 1.9;
}

.investment-detail-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ccd4cf;
  border-left: 1px solid #ccd4cf;
}

.investment-detail-cards article {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border-right: 1px solid #ccd4cf;
  border-bottom: 1px solid #ccd4cf;
  transition: 0.3s ease;
}

.investment-detail-cards article:hover {
  background: rgba(255, 255, 255, 0.55);
}

.investment-detail-cards article > span {
  display: block;
  margin-bottom: 25px;
  color: #9a9f9b;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.investment-detail-cards article > i {
  color: #a87816;
  font-size: 20px;
}

.investment-detail-cards h4 {
  margin: 14px 0 8px;
  color: #071a2d;
  font-size: 16px;
  font-weight: 600;
}

.investment-detail-cards p {
  max-width: 230px;
  margin: 0;
  color: #737d78;
  font-size: 9px;
  line-height: 1.7;
}

.investment-details-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  padding-top: 30px;
  border-top: 1px solid rgba(7, 26, 45, 0.12);
}

.investment-details-footer small {
  display: block;
  margin-bottom: 7px;
  color: #9b761d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.investment-details-footer strong {
  color: #071a2d;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 500;
}

.investment-details-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  color: #fff;
  background: #071a2d;
  border-radius: 50px;
  font-size: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.investment-details-footer a:hover {
  color: #071a2d;
  background: var(--gold);
  transform: translateY(-2px);
}
