:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7a2e;
  --gold-faint: rgba(201, 168, 76, 0.08);
  --charcoal: #141414;
  --mid: #1e1e1e;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  position: relative;
}

/* REMOVED: body::after statue of liberty full-page background */

/* Subtle vignette + gradient overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 100% at 50% 0%,
      transparent 40%,
      var(--black) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.2) 20%,
      rgba(10, 10, 10, 0.2) 60%,
      rgba(10, 10, 10, 0.7) 85%,
      rgba(10, 10, 10, 0.95) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1001;
  opacity: 0.4;
}

/* All sections need z-index above the bg */
nav,
.hero,
.stats-bar,
.services,
.investment,
.marquee-wrap,
.crypto-section,
.trust,
.cta-section,
footer {
  position: relative;
  z-index: 2;
}

/* Custom cursor */
.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  animation: fadeDown 1s ease 0.2s both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}
.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-left: 5px;
  /*border:2px solid red;*/
}
.nav-links a {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 12px 28px;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* ===== STATUE OF LIBERTY — hero-left background ===== */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;

  /* Background image */
  background-image: url("liberty.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay so the text stays readable over the image */
/*.hero-left::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(*/
/*    135deg,*/
/*    rgba(10, 10, 10, 0.82) 0%,*/
/*    rgba(10, 10, 10, 0.65) 60%,*/
/*    rgba(10, 10, 10, 0.45) 100%*/
/*  );*/
/*  z-index: 0;*/
/*  pointer-events: none;*/
}

/* Lift all direct children above the overlay */
.hero-left > * {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 36px;
  animation: fadeUp 1s ease 0.7s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.55);
  max-width: 420px;
  margin-bottom: 56px;
  animation: fadeUp 1s ease 0.9s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 1s ease 1.1s both;
}

.btn-primary {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px 44px;
  cursor: none;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.2);
  padding: 18px 36px;
  cursor: none;
  text-decoration: none;
  transition:
    border-color 0.3s,
    color 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.5s ease 0.3s both;
  z-index: 2;
}

.hero-chart-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.5) 0%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.geo-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.geo-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

/* Floating ticker card */
.ticker-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.25);
  backdrop-filter: blur(20px);
  padding: 32px;
  animation:
    float 6s ease-in-out infinite,
    fadeIn 1s ease 1.3s both;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

.ticker-title {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ticker-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ticker-item:last-child {
  border-bottom: none;
}

.ticker-sym {
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.ticker-name {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 2px;
}
.ticker-price {
  text-align: right;
}
.ticker-val {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}
.ticker-chg {
  font-size: 11px;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.up {
  color: #4caf7d;
}
.dn {
  color: #e05b5b;
}

.mini-chart {
  margin-top: 24px;
  height: 50px;
  position: relative;
}
.mini-chart svg {
  width: 100%;
  height: 100%;
}

.corner-tl,
.corner-br {
  position: absolute;
  width: 20px;
  height: 20px;
}
.corner-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.crypto-orb {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(201, 168, 76, 0.25),
    rgba(201, 168, 76, 0.05)
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  animation: spin-slow 20s linear infinite;
}
.orb-btc {
  width: 80px;
  height: 80px;
  font-size: 14px;
  color: var(--gold);
  top: 18%;
  right: 8%;
  animation-duration: 25s;
}
.orb-eth {
  width: 60px;
  height: 60px;
  font-size: 11px;
  color: var(--gold-light);
  bottom: 22%;
  right: 18%;
  animation-duration: 18s;
  animation-direction: reverse;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* STATS BAR */
.stats-bar {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 36px 60px;
  gap: 20px;
}

.stat-item {
  text-align: center;
  animation: fadeUp 0.8s ease both;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-num sup {
  font-size: 20px;
  vertical-align: super;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  background: rgba(201, 168, 76, 0.15);
  align-self: stretch;
}

/* SERVICES */
.services {
  padding: 120px 60px;
  position: relative;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(2px);
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 80px;
  max-width: 600px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.service-card:hover {
  background: rgba(30, 30, 30, 0.85);
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.service-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-family: "Cinzel", serif;
  font-size: 10px;
  color: var(--gold);
  background: var(--black);
  padding: 2px 6px;
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}
.service-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.45);
}

/* INVESTMENT SECTION */
.investment {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(4px);
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.inv-visual {
  position: relative;
  height: 480px;
}

.portfolio-card {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 32px;
  position: absolute;
}
.portfolio-card.main {
  width: 100%;
  top: 0;
  left: 0;
}
.portfolio-card.secondary {
  width: 75%;
  bottom: 0;
  right: 0;
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(201, 168, 76, 0.15);
}

.pcard-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 20px;
}
.pcard-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}
.pcard-chg {
  font-size: 13px;
  color: #4caf7d;
  margin-bottom: 28px;
}

.alloc-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  margin-bottom: 8px;
  overflow: hidden;
}
.alloc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.alloc-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 16px;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.donut-legend {
  flex: 1;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 10px;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* CRYPTO */
.crypto-section {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(2px);
}

.crypto-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel", serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.crypto-card {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.crypto-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
}

.cc-icon {
  font-family: "Cinzel", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.cc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.cc-ticker {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.35);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cc-price {
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.cc-chg {
  font-size: 12px;
  margin-bottom: 20px;
}
.cc-sparkline {
  height: 36px;
  width: 100%;
}

/* MARQUEE */
.marquee-wrap {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--black);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee-item::after {
  content: "◆";
  font-size: 8px;
  opacity: 0.5;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* TRUST */
.trust {
  padding: 120px 60px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(4px);
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.trust-item {
  padding: 48px 32px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s;
}
.trust-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.trust-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.trust-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.4);
}

/* CTA SECTION */
.cta-section {
  padding: 140px 60px;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(8px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 56px;
  line-height: 1.8;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-input-group {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-right: none;
  padding: 18px 24px;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.cta-input::placeholder {
  color: rgba(245, 240, 232, 0.25);
}
.cta-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
}
.cta-btn {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px 36px;
  cursor: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.cta-btn:hover {
  background: var(--gold-light);
}

/* FOOTER */
footer {
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(12px);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.4);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
}
.social-link svg {
  width: 14px;
  height: 14px;
  stroke: rgba(245, 240, 232, 0.5);
  fill: none;
  stroke-width: 1.5;
}
.footer-col h4 {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 1px;
}
.footer-legal {
  display: flex;
  gap: 32px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.25);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--gold);
}

/* Sparklines */
.spark-up {
  stroke: #4caf7d;
  fill: none;
  stroke-width: 1.5;
}
.spark-dn {
  stroke: #e05b5b;
  fill: none;
  stroke-width: 1.5;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .investment {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }
  .crypto-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar {
    flex-wrap: wrap;
    padding: 36px 24px;
  }
  .hero-left {
    padding: 120px 24px 60px;
  }
  .services,
  .crypto-section,
  .trust,
  .cta-section {
    padding: 80px 24px;
  }
}