:root {
  --black: #0b0b0d;
  --ink: #151519;
  --charcoal: #202025;
  --muted: #68686f;
  --line: rgba(20, 20, 24, 0.12);
  --white: #ffffff;
  --off-white: #f7f5ef;
  --gold: #d4af37;
  --gold-light: #f0d479;
  --gold-dark: #9d7418;
  --success: #0d7c5b;
  --danger: #b63f3f;
  --shadow-sm: 0 12px 35px rgba(11, 11, 13, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.22);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --max-width: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--black); }

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 0 0 8px 8px;
  font-weight: 800;
}
.skip-link:focus { top: 0; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-cream { background: var(--off-white); }
.section-gold { background: linear-gradient(135deg, #c89b22, #f2d578); color: var(--black); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: var(--gold-light); }
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3, h4 { margin: 0 0 18px; line-height: 1.12; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.9rem, 6.3vw, 6.5rem); font-weight: 850; }
h2 { font-size: clamp(2.2rem, 4vw, 4.15rem); font-weight: 820; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 800; }
h4 { font-size: 1.05rem; font-weight: 850; }
p { margin: 0 0 20px; }
.lead { max-width: 760px; color: #4c4c53; font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.section-dark .lead { color: rgba(255,255,255,.72); }
.gold-text { color: var(--gold); }
.gold-gradient {
  color: transparent;
  background: linear-gradient(115deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.site-header.scrolled {
  background: rgba(11,11,13,.94);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.05;
}
.brand img { width: 44px; height: 44px; }
.brand small { display: block; color: var(--gold); font-size: .58rem; letter-spacing: .18em; margin-top: 4px; }
.nav-list { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 750; transition: color var(--transition); }
.nav-list a:hover, .nav-list a.active { color: var(--gold-light); }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(212,175,55,.55); border-radius: 999px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: white;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 20px; height: 2px; margin: auto; background: white; position: relative; transition: var(--transition);
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 78% 35%, rgba(212,175,55,.19), transparent 24%),
    radial-gradient(circle at 12% 80%, rgba(212,175,55,.08), transparent 25%),
    linear-gradient(145deg, #080809 0%, #141316 58%, #080809 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(35deg, transparent 46%, rgba(212,175,55,.2) 47%, transparent 48%),
    linear-gradient(145deg, transparent 46%, rgba(212,175,55,.13) 47%, transparent 48%);
  background-size: 86px 86px;
  mask-image: linear-gradient(to right, transparent, black 55%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.14fr .86fr; align-items: center; gap: 70px; }
.hero h1 { max-width: 800px; }
.hero-copy > p { max-width: 670px; color: rgba(255,255,255,.72); font-size: 1.18rem; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { background: var(--black); color: white; }
.btn-outline { border-color: rgba(20,20,24,.22); color: var(--ink); background: transparent; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero-logo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  padding: 42px 34px 30px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.6deg);
}
.hero-logo-card img { width: 100%; max-height: 410px; object-fit: contain; }
.hero-logo-card .micro { text-align: center; color: #56565d; font-weight: 750; letter-spacing: .08em; font-size: .72rem; text-transform: uppercase; margin: 4px 0 0; }
.orbit { position: absolute; width: 450px; aspect-ratio: 1; border: 1px solid rgba(212,175,55,.24); border-radius: 50%; animation: spin 28s linear infinite; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 25px rgba(212,175,55,.7); }
.orbit::before { top: 18%; right: 8%; }
.orbit::after { bottom: 13%; left: 11%; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust-strip { background: #101012; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--gold-light); font-size: 1.04rem; }
.trust-item span { color: rgba(255,255,255,.58); font-size: .82rem; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-head > div:first-child { max-width: 760px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gold-dark); font-weight: 850; white-space: nowrap; }
.text-link::after { content: "→"; transition: transform var(--transition); }
.text-link:hover::after { transform: translateX(4px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-dark { color: white; border-color: rgba(255,255,255,.09); background: linear-gradient(145deg, #17171a, #0e0e10); box-shadow: none; }
.card p:last-child { margin-bottom: 0; }
.card-number { display: block; color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .13em; margin-bottom: 42px; }
.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 15px;
  font-size: 1.25rem;
  font-weight: 900;
}
.card-dark p { color: rgba(255,255,255,.65); }

.venture-feature {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: center;
}
.venture-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 36%, rgba(212,175,55,.22), transparent 35%),
    linear-gradient(145deg, #111114, #09090b);
  overflow: hidden;
}
.venture-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(212,175,55,.21);
  border-radius: 28px;
}
.venture-visual img { position: relative; z-index: 1; width: min(82%, 480px); padding: 25px; border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 22px 50px rgba(0,0,0,.28); }
.feature-list { display: grid; gap: 18px; margin: 30px 0 0; }
.feature-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature-row .tick { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(212,175,55,.14); color: var(--gold-dark); font-weight: 900; }
.feature-row strong { display: block; margin-bottom: 3px; }
.feature-row span { color: var(--muted); font-size: .95rem; }

.stats-panel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 34px 24px; background: white; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1; color: var(--gold-dark); }
.stat span { display: block; color: var(--muted); margin-top: 10px; font-size: .88rem; }

.quote-block { padding: 52px; border-left: 4px solid var(--gold); background: white; box-shadow: var(--shadow-sm); border-radius: 0 var(--radius) var(--radius) 0; }
.quote-block blockquote { margin: 0 0 20px; font-size: clamp(1.35rem, 2.4vw, 2.1rem); line-height: 1.35; font-weight: 700; }
.quote-block cite { color: var(--muted); font-style: normal; font-weight: 750; }

.page-hero {
  position: relative;
  min-height: 540px;
  padding: 170px 0 90px;
  display: flex;
  align-items: end;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.18), transparent 30%),
    linear-gradient(135deg, #09090b, #18171a 62%, #0b0b0d);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -180px;
  bottom: -380px;
  border: 1px solid rgba(212,175,55,.32);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(212,175,55,.03), 0 0 0 120px rgba(212,175,55,.025);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 930px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.7); font-size: 1.16rem; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: start; }
.sticky-label { position: sticky; top: 120px; }
.prose h3 { margin-top: 34px; }
.prose p, .prose li { color: #505057; }
.prose ul { padding-left: 20px; }

.value-grid .card { min-height: 290px; }
.fact-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.fact-row { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-row strong { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }

.founder-card { display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center; padding: 38px; border-radius: var(--radius); background: linear-gradient(135deg, #111113, #1b1a1d); color: white; }
.founder-avatar { width: 170px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: var(--black); font-size: 2.7rem; font-weight: 950; box-shadow: 0 0 0 10px rgba(212,175,55,.08); }
.founder-card p { color: rgba(255,255,255,.68); }

.process { counter-reset: steps; display: grid; gap: 0; }
.process-item { counter-increment: steps; display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-item::before { content: "0" counter(steps); color: var(--gold-dark); font-size: 2rem; font-weight: 900; }

.timeline { position: relative; display: grid; gap: 24px; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--gold), rgba(212,175,55,.12)); }
.timeline-item { position: relative; padding-left: 62px; }
.timeline-item::before { content: ""; position: absolute; left: 10px; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(212,175,55,.13); }
.timeline-item span { color: var(--gold-dark); font-weight: 900; }

.cta-panel {
  position: relative;
  padding: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #0d0d0f, #202023);
}
.cta-panel::after { content: ""; position: absolute; width: 340px; height: 340px; right: -80px; top: -150px; border: 1px solid rgba(212,175,55,.28); border-radius: 50%; box-shadow: 0 0 0 50px rgba(212,175,55,.04); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { max-width: 680px; color: rgba(255,255,255,.65); }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-card { padding: 34px; border-radius: var(--radius); background: var(--black); color: white; }
.contact-card p { color: rgba(255,255,255,.65); }
.contact-detail { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail small { display: block; color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.contact-detail a, .contact-detail span { display: block; margin-top: 5px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .86rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d9d7d1;
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.15); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 5px; }
.hidden { display: none !important; }

.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; font-weight: 850; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold-dark); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 850px; color: var(--muted); padding: 0 0 24px; }

.site-footer { background: #08080a; color: white; padding: 78px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; padding-bottom: 54px; }
.footer-brand { max-width: 380px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.55); }
.footer-col h4 { color: var(--gold-light); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,.62); margin: 10px 0; font-size: .92rem; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.45); font-size: .78rem; }

.legal { max-width: 860px; }
.legal h2 { font-size: 2rem; margin-top: 44px; }
.legal h3 { margin-top: 30px; }
.legal p, .legal li { color: #505057; }
.legal li { margin: 8px 0; }
.notice { padding: 22px; border-left: 4px solid var(--gold); background: var(--off-white); border-radius: 0 12px 12px 0; color: #505057; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-list { position: fixed; inset: 84px 18px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; background: rgba(14,14,16,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; box-shadow: var(--shadow-lg); }
  .nav-list.open { display: flex; }
  .nav-list a { display: block; padding: 14px 12px; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero { min-height: auto; }
  .hero-grid, .venture-feature, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 490px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / 4; }
  .sticky-label { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 50px 0; }
  .brand strong { font-size: .82rem; }
  .brand img { width: 40px; height: 40px; }
  .hero { padding-top: 135px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .hero-logo-card { padding: 22px; border-radius: 24px; }
  .orbit { width: 320px; }
  .hero-visual { min-height: 390px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .section-head { align-items: start; flex-direction: column; }
  .grid-2, .grid-3, .grid-4, .stats-panel { grid-template-columns: 1fr; }
  .stats-panel .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-panel .stat:last-child { border-bottom: 0; }
  .page-hero { min-height: 500px; padding-top: 140px; }
  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .fact-row { grid-template-columns: 1fr; gap: 4px; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin-inline: auto; }
  .process-item { grid-template-columns: 56px 1fr; }
  .cta-panel { padding: 44px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .quote-block { padding: 34px 26px; }
}

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