/* ====================================================
   TOKENS — logo-matched palette
   Rich = gold #C9A524 | Grand = black #111 | Dad = red-orange #C94020
==================================================== */
:root {
  --black: #111111;
  --black-soft: #1a1a1a;
  --black-mid: #2a2a2a;
  --gold: #c9a524;
  --gold-dark: #a8861c;
  --gold-light: #ddb930;
  --gold-pale: #f5e9b8;
  --red: #c94020;
  --red-dark: #a33318;
  --red-light: #e05030;
  --white: #ffffff;
  --gray-light: #f2efe8;
  --gray-text: #5a5a5a;
  --body-text: #1a1a1a;
  --text-muted: #7a7a7a;
  --border-gold: rgba(201, 165, 36, 0.28);
  --border-black: rgba(17, 17, 17, 0.12);
  --border-gray: rgba(17, 17, 17, 0.08);
  --shadow-sm: 0 2px 12px rgba(17, 17, 17, 0.07);
  --shadow-md: 0 8px 32px rgba(17, 17, 17, 0.11);
  --shadow-lg: 0 20px 60px rgba(17, 17, 17, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 165, 36, 0.28);
  --shadow-red: 0 8px 28px rgba(201, 64, 32, 0.32);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", serif;
  --sans: "Plus Jakarta Sans", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --gutter: 80px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  background: var(--white);
  color: var(--body-text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ====================================================
   CURSOR
==================================================== */
#cur-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
#cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
  width: 50px;
  height: 50px;
  border-color: var(--gold);
}
body:has(a:hover) #cur-dot,
body:has(button:hover) #cur-dot {
  background: var(--gold);
}

/* ====================================================
   PROGRESS BAR
==================================================== */
#pbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--black), var(--gold), var(--red));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ====================================================
   NAVBAR
==================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 122px;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition:
    height 0.4s var(--ease-out),
    box-shadow 0.4s;
}
nav.compact {
  height: 122px;
  box-shadow: var(--shadow-md);
}
.logo-mark img {
  width: 100%;
  height: clamp(70px, 10vw, 100px);
}
/* Logo — three-colour wordmark matching the brand image */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  cursor: pointer;
}
.logo-mark {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 0;
  font-family: var(--serif);
  font-weight: 700;
}
.logo-rich {
  font-size: 1.05rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo-grand {
  font-size: 1.45rem;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--display);
}
.logo-dad {
  font-size: 1.45rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: var(--display);
}
.logo-cap {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-text);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--black);
}
.nav-links a:hover::after {
  right: 0;
}
.nav-btn {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.62rem 1.4rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.2s var(--ease-spring),
    box-shadow 0.3s;
}
.nav-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--black);
  display: block;
  transition: all 0.35s var(--ease-out);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mob-menu a {
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.3s;
}
.mob-menu a:hover {
  color: var(--gold);
}
.mob-cta {
  background: var(--red);
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 2px;
  margin-top: 1rem;
}

/* ====================================================
   HERO
==================================================== */
#hero {
  width: 100%;
  min-height: 100vh;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=2000&q=90&auto=format&fit=crop");
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
  animation: kbzoom 20s ease-out forwards;
}
@keyframes kbzoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 5, 5, 0.86) 0%,
    rgba(5, 5, 5, 0.62) 40%,
    rgba(5, 5, 5, 0.26) 68%,
    rgba(5, 5, 5, 0.08) 100%
  );
}
.hero-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(201, 165, 36, 0.05), transparent);
  pointer-events: none;
}
.hero-sideline {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold) 30%,
    var(--red) 70%,
    transparent
  );
  opacity: 0.7;
}
.hptcl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.ptcl {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: pfloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes pfloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-90px) scale(1.5);
  }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0;
  animation: sfadein 1s 2s both;
}
@keyframes sfadein {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.scroll-ln {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scline 1.8s ease-in-out infinite;
}
@keyframes scline {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}
.hero-scroll-hint span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.hero-left {
  position: relative;
  z-index: 3;
  padding: 5rem var(--gutter) 6rem var(--gutter);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 165, 36, 0.12);
  border: 1px solid rgba(201, 165, 36, 0.32);
  border-radius: 100px;
  padding: 0.42rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pdot 2.5s ease-in-out infinite;
}
@keyframes pdot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 165, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(201, 165, 36, 0);
  }
}
.hero-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}
.h1ln {
  display: block;
  overflow: hidden;
}
.h1inn {
  display: block;
  transform: translateY(102%);
  animation: slup 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes slup {
  to {
    transform: translateY(0);
  }
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-h1 strong {
  font-weight: 700;
  color: var(--white);
}
.hero-desc {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fin 0.8s 0.72s var(--ease-out) forwards;
}
@keyframes fin {
  to {
    opacity: 1;
  }
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fin 0.8s 0.9s var(--ease-out) forwards;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  opacity: 0;
  animation: fin 0.8s 1.1s var(--ease-out) forwards;
}
.hstat {
  flex: 1;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hstat:last-child {
  border-right: none;
}
.hstat-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  text-shadow: 0 2px 20px rgba(201, 165, 36, 0.35);
}
.hstat-n sup {
  font-size: 1.1rem;
}
.hstat-l {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 0.3rem;
}
.hero-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5rem var(--gutter) 6rem 2rem;
}
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(201, 165, 36, 0.12);
  padding: 2.5rem;
  width: 100%;
  max-width: 370px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: crise 1s 0.5s var(--ease-out) forwards;
}
@keyframes crise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--black), var(--gold), var(--red));
  border-radius: 4px 4px 0 0;
}
.card-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.card-lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: pdot 2s infinite;
}
.hero-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.hero-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cinput {
  width: 100%;
  border: 1px solid var(--border-black);
  background: var(--gray-light);
  color: var(--body-text);
  font-family: var(--sans);
  font-size: 0.83rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.65rem;
  border-radius: 2px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.cinput:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 165, 36, 0.12);
}
.cinput::placeholder {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.card-trust {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  justify-content: center;
}
.card-trust svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ====================================================
   BUTTONS
==================================================== */
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-spring),
    box-shadow 0.3s;
}
.btn-r::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s;
}
.btn-r:hover::before {
  left: 100%;
}
.btn-r:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-r svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-spring);
}
.btn-r:hover svg {
  transform: translateX(3px);
}
.btn-r.full {
  width: 100%;
  justify-content: center;
}
.btn-wo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.btn-wo:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-wo svg {
  width: 14px;
  height: 14px;
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.25s var(--ease-spring),
    box-shadow 0.3s;
}
.btn-g:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ====================================================
   TICKER
==================================================== */
.ticker {
  background: var(--black);
  padding: 0.85rem 0;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.tick-track {
  display: flex;
  width: max-content;
  animation: tkanim 35s linear infinite;
}
@keyframes tkanim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tick-i {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}
.tick-i strong {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.tick-i span {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ====================================================
   SECTION BASE
==================================================== */
.s-white {
  background: var(--white);
}
.s-gray {
  background: var(--gray-light);
}
.s-dark {
  background: var(--black);
}
section:not(#hero) {
  width: 100%;
  padding: 6rem var(--gutter);
}
.wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}
.stag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.stag.red .stag-dot {
  background: var(--red);
}
.stag.wt {
  color: rgba(255, 255, 255, 0.55);
}
.stag.wt .stag-dot {
  background: var(--gold);
}
.sh2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.sh2 em {
  font-style: italic;
  color: var(--gold-dark);
}
.sh2.wt {
  color: var(--white);
}
.sh2.wt em {
  color: var(--gold-light);
}
.sh2.red em {
  color: var(--red);
}
.slead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-text);
  max-width: 560px;
  line-height: 1.85;
}
.slead.wt {
  color: rgba(255, 255, 255, 0.58);
}
[data-rv] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
[data-rv].in {
  opacity: 1;
  transform: none;
}
[data-rv][data-d="1"] {
  transition-delay: 0.12s;
}
[data-rv][data-d="2"] {
  transition-delay: 0.24s;
}
[data-rv][data-d="3"] {
  transition-delay: 0.36s;
}
[data-rv][data-d="4"] {
  transition-delay: 0.48s;
}
[data-rv][data-d="5"] {
  transition-delay: 0.6s;
}

/* ====================================================
   ABOUT
==================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}
.avis {
  position: relative;
}
.abox {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gray);
  background-image: url(./images/rgd.jpg);
  background-size: cover;
  background-position: start;
}
.ageo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
}
.aring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 36, 0.13);
  animation: aspin var(--dur, 30s) linear infinite;
}
@keyframes aspin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.aring:nth-child(1) {
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
}
.aring:nth-child(2) {
  width: 82%;
  height: 82%;
  top: 50%;
  left: 50%;
  animation-direction: reverse;
  --dur: 45s;
}
.aring:nth-child(3) {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  border-color: rgba(201, 165, 36, 0.05);
  --dur: 60s;
}
.acenter {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.abig {
  font-family: var(--display);
  font-size: 7.5rem;
  font-weight: 700;
  color: rgba(201, 165, 36, 0.13);
  line-height: 1;
  letter-spacing: -0.04em;
}
.asub {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.abar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--black), var(--gold), var(--red));
}
.afloat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.5rem;
  transition: transform 0.4s var(--ease-spring);
}
.afloat:hover {
  transform: scale(1.04) !important;
}
.afloat.f1 {
  bottom: 2.5rem;
  right: -2rem;
}
.afloat.f2 {
  top: 2.5rem;
  left: -2rem;
}
.afn {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.afl {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.atxt p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  border-left: 3px solid transparent;
  transition:
    border-left-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  cursor: default;
}
.pill:hover {
  border-left-color: var(--gold);
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.pillico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    background 0.3s,
    transform 0.3s var(--ease-spring);
}
.pill:hover .pillico {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-5deg) scale(1.1);
}
.pilltxt strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.pilltxt span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ====================================================
   SERVICES
==================================================== */
.svctop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.svcgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.scard {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
  cursor: default;
}
.scard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 3px;
  background: var(--gold);
  transition: right 0.4s var(--ease-out);
}
.scard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.scard:hover::after {
  right: 0;
}
.snum {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.sico {
  width: 46px;
  height: 46px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-gray);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.4s var(--ease-spring);
}
.scard:hover .sico {
  background: var(--black);
  color: var(--gold);
  transform: rotate(-6deg) scale(1.1);
}
.scard h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.65rem;
}
.scard p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ====================================================
   FUNDING SOLUTIONS
==================================================== */
#funding {
  position: relative;
  overflow: hidden;
}
.fund-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.fund-intro-img {
  position: relative;
}




.fund-visual-num {
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201, 165, 36, 0.1);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fund-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 64, 32, 0.08);
  border: 1px solid rgba(201, 64, 32, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}
.fund-badge span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.fund-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.fcard {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s,
    border-color 0.3s;
  cursor: default;
}
.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--red));
  transition: height 0.4s var(--ease-out);
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.fcard:hover::before {
  height: 100%;
}
.fcard-ico {
  width: 42px;
  height: 42px;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 1rem;
  transition:
    background 0.3s,
    color 0.3s;
}
.fcard:hover .fcard-ico {
  background: var(--gold);
  color: var(--black);
}
.fcard h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.45rem;
}
.fcard p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.fcard-tag {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 0.75rem;
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

/* Eligibility / how it works */
.fund-process {
  background: var(--black);
  padding: 3.5rem;
  position: relative;
  margin-top: 4rem;
}
.fund-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pstep {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s,
    background 0.3s;
  cursor: default;
}
.pstep:hover {
  border-color: rgba(201, 165, 36, 0.25);
  background: rgba(201, 165, 36, 0.04);
}
.pstep-n {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 165, 36, 0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pstep h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.pstep p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
}
.pstep-arrow {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.9rem;
  z-index: 2;
}
.pstep:last-child .pstep-arrow {
  display: none;
}

/* Qualification panel */
.fund-qualify {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.fq-panel {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 2.25rem;
}
.fq-panel h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.fq-panel h3 em {
  color: var(--gold-dark);
  font-style: italic;
}
.fq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.fq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.84rem;
  color: var(--gray-text);
  line-height: 1.55;
}
.fq-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}
.fq-check svg {
  width: 10px;
  height: 10px;
  color: var(--black);
}
.fq-panel.dark {
  background: var(--black);
}
.fq-panel.dark h3 {
  color: var(--white);
}
.fq-panel.dark .fq-item {
  color: rgba(255, 255, 255, 0.52);
}
.fq-check.red {
  background: var(--red);
}
.fq-check.red svg {
  color: var(--white);
}

/* ====================================================
   BRANDS
==================================================== */
.brands-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bcard {
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
  cursor: default;
}
.bcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black), var(--black-mid));
  opacity: 0;
  transition: opacity 0.4s;
}
.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--black);
}
.bcard:hover::before {
  opacity: 1;
}
.bcin {
  position: relative;
  z-index: 1;
}
.bctop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.bcpill {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-black);
  padding: 0.25rem 0.65rem;
  color: var(--gray-text);
  transition:
    color 0.3s,
    border-color 0.3s;
}
.bcard:hover .bcpill {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.18);
}
.bcarr {
  width: 32px;
  height: 32px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gray);
  color: var(--black);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s var(--ease-spring);
}
.bcard:hover .bcarr {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-45deg);
}
.bcard h4 {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.bcard:hover h4 {
  color: var(--white);
}
.bcard p {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.3s;
}
.bcard:hover p {
  color: rgba(255, 255, 255, 0.5);
}
.burl {
  margin-top: 1.1rem;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s;
}
.bcard:hover .burl {
  color: var(--gold-light);
}
.burl svg {
  width: 9px;
  height: 9px;
}

/* ====================================================
   STRATEGY
==================================================== */
#strategy {
  position: relative;
  overflow: hidden;
}
.stbg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 30%,
      rgba(201, 165, 36, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 70%,
      rgba(201, 64, 32, 0.05) 0%,
      transparent 60%
    );
  will-change: transform;
  pointer-events: none;
}
.stgrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.ststeps {
  margin-top: 2.5rem;
}
.sstep {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding-left 0.3s;
  cursor: default;
}
.sstep:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sstep:hover {
  padding-left: 0.5rem;
}
.stepn {
  font-family: var(--display);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 0.3rem;
  flex-shrink: 0;
  width: 1.75rem;
}
.stepb h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.stepb p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
}
.stpanel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3rem;
  position: relative;
  margin-top: 2.5rem;
}
.stpanel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.bquote {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.7;
  margin-bottom: 1.25rem;
}
.stq {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.stq strong {
  font-weight: 600;
  color: var(--gold-light);
  font-style: normal;
}
.stcite {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.stmet {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.met {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-spring);
  cursor: default;
}
.met:hover {
  background: rgba(201, 165, 36, 0.07);
  border-color: rgba(201, 165, 36, 0.2);
  transform: scale(1.02);
}
.met .mn {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.met .ml {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 0.3rem;
}

/* ====================================================
   INVEST
==================================================== */
.invgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.invfeats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.invf {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-left: 4px solid transparent;
  transition:
    border-left-color 0.3s,
    box-shadow 0.3s,
    transform 0.35s var(--ease-spring);
  cursor: default;
}
.invf:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.invfico {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.15rem;
  transition: transform 0.3s var(--ease-spring);
}
.invf:hover .invfico {
  transform: scale(1.2) rotate(-8deg);
}
.invftxt strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.invftxt p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.invpanel {
  background: var(--black);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.invpanel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 165, 36, 0.1);
  border-radius: 50%;
}
.invpanel::before {
  content: "INVESTOR PORTAL";
  position: absolute;
  top: -0.62rem;
  left: 2rem;
  font-size: 0.57rem;
  letter-spacing: 0.25em;
  background: var(--black);
  padding: 0 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.invpanel h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.invpanel h3 em {
  color: var(--gold-light);
}
.invpanel p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.invrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}
.invrow span:first-child {
  color: rgba(255, 255, 255, 0.42);
}
.invrow span:last-child {
  color: var(--gold-light);
  font-weight: 500;
}

/* ====================================================
   TRUST
==================================================== */
#trust {
  text-align: center;
}
.tchips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.tc {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--black);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
  cursor: default;
}
.tc:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tc svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.3s;
}
.tc:hover svg {
  color: var(--gold-light);
}
.trow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.tcard {
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  padding: 2rem;
  text-align: left;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s,
    border-color 0.3s;
  position: relative;
  cursor: default;
}
.tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 2rem;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.tcard:hover::before {
  width: 4rem;
}
.tstars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.tstars span {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.tcard blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.tauth {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ====================================================
   CTA BAND
==================================================== */
#ctaband {
  text-align: center;
  position: relative;
  overflow: hidden;
}
#ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(201, 165, 36, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ctain {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.ctah {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ctah em {
  font-style: italic;
  color: var(--gold-light);
}
.ctah strong {
  font-weight: 700;
}
.ctap {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.ctabtns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   CONTACT
==================================================== */
.congrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.cilist {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-gray);
  background: var(--white);
  margin-top: 2rem;
}
.ci {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-gray);
  transition: background 0.3s;
  cursor: default;
}
.ci:last-child {
  border-bottom: none;
}
.ci:hover {
  background: var(--gray-light);
}
.ciico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    background 0.3s,
    transform 0.3s var(--ease-spring);
}
.ci:hover .ciico {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-5deg);
}
.cilbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.cival {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--black);
}
.cfwrap {
  background: var(--white);
  border: 1px solid var(--border-gray);
  padding: 2.5rem;
}
.cfwrap h3 {
  font-family: var(--serif);
  font-size: 1.72rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.cfwrap h3 em {
  font-style: italic;
  color: var(--gold-dark);
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cfrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.cf input,
.cf select,
.cf textarea {
  width: 100%;
  background: var(--gray-light);
  border: 1px solid var(--border-gray);
  color: var(--body-text);
  font-family: var(--sans);
  font-size: 0.84rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s,
    transform 0.2s;
}
.cf input:focus,
.cf select:focus,
.cf textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 165, 36, 0.14);
}
.cf input:focus {
  transform: translateY(-1px);
}
.cf input::placeholder,
.cf textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.79rem;
}
.cf select {
  -webkit-appearance: none;
  cursor: pointer;
}
.cf textarea {
  resize: vertical;
  min-height: 110px;
}

/* ====================================================
   FOOTER
==================================================== */
footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem var(--gutter) 2rem;
}
.fbar {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--black-soft),
    var(--gold),
    var(--red),
    var(--black-soft)
  );
  margin-bottom: 2rem;
  opacity: 0.5;
}
.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}
.fbrand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 1.25rem;
}
.fcol h5 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fcol li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: block;
}
.fcol li a:hover {
  color: var(--white);
  padding-left: 0.4rem;
}
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.fbot p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}
.fleg {
  display: flex;
  gap: 1.5rem;
}
.fleg span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ====================================================
   SCROLL TO TOP
==================================================== */
#stt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--black);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s var(--ease-spring),
    background 0.3s;
}
#stt.show {
  opacity: 1;
  pointer-events: all;
}
#stt:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1100px) {
  :root {
    --gutter: 40px;
  }
  #hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 4rem var(--gutter) 5rem;
  }
  .about-grid,
  .invgrid,
  .congrid,
  .stgrid,
  .fund-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .avis,
  .fund-intro-img {
    display: none;
  }
  .svctop {
    grid-template-columns: 1fr;
  }
  .svcgrid {
    grid-template-columns: 1fr 1fr;
  }
  .bgrid {
    grid-template-columns: 1fr 1fr;
  }
  .trow {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .stpanel {
    margin-top: 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fund-qualify {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }
  .nav-links,
  .nav-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  body {
    cursor: auto;
  }
  #cur-dot,
  #cur-ring {
    display: none;
  }
  .svcgrid {
    grid-template-columns: 1fr;
  }
  .bgrid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  .hstat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .cfrow {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .ctabtns {
    flex-direction: column;
    align-items: center;
  }
  .stmet {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .fund-cards {
    grid-template-columns: 1fr;
  }
  .pstep-arrow {
    display: none;
  }
}
