@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #D4A574;
  --purple: #8B7BA8;
  --white-2: rgba(255,255,255,0.02);
  --white-5: rgba(255,255,255,0.05);
  --white-10: rgba(255,255,255,0.10);
  --white-20: rgba(255,255,255,0.20);
  --white-40: rgba(255,255,255,0.40);
  --white-60: rgba(255,255,255,0.60);
  --white-80: rgba(255,255,255,0.80);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== PARTICLE CANVAS ========== */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-dark { background: rgba(0,0,0,0.88); }
.section-darker { background: rgba(0,0,0,0.96); }
.section-transparent { background: transparent; }

.divider { border-top: 1px solid var(--white-5); }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 { font-size: clamp(3.5rem, 9vw, 8rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }

p { color: var(--white-40); font-size: 1.0625rem; line-height: 1.7; }

.lead { font-size: 1.25rem; line-height: 1.65; color: var(--white-60); }
.label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white-40);
}

.gold { color: var(--gold); }
.purple { color: var(--purple); }
.dim { color: var(--white-40); }

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-5);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .btn-primary,
.nav-links .btn-primary:hover { color: var(--black) !important; }

.nav-login {
  padding: 8px 16px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 100px !important;
  font-size: 13px !important;
  color: var(--gold) !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}

.nav-login:hover {
  background: rgba(212,165,116,0.1) !important;
  color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 600;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212,165,116,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white-80);
  border: 1px solid var(--white-20);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--white-60);
  color: var(--white);
  background: var(--white-5);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 140px 0 100px;
  position: relative;
  background: transparent;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-60);
  margin-bottom: 48px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 32px;
}

.hero-headline .gold-period { color: var(--gold); }

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--white-60);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  padding: 40px 0;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid var(--white-5);
  border-bottom: 1px solid var(--white-5);
}

.stats-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--white-10);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--white-40);
  font-weight: 400;
  white-space: nowrap;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  margin-bottom: 72px;
}

.section-header .label { margin-bottom: 20px; display: block; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ========== PROCESS STEPS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-5);
  border: 1px solid var(--white-5);
  border-radius: 20px;
  overflow: hidden;
}

.process-step {
  padding: 48px 40px;
  background: rgba(0,0,0,0.95);
  transition: background 0.3s;
}

.process-step:hover { background: rgba(255,255,255,0.02); }

.process-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.process-step h3 { color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 0.9375rem; }

/* ========== SERVICE TILES ========== */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-tile {
  padding: 48px 36px 40px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  text-decoration: none;
}

.service-tile:hover {
  border-color: var(--white-20);
  background: rgba(255,255,255,0.03);
  transform: translateY(-4px);
}

.service-tile-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-tile-icon svg { width: 20px; height: 20px; stroke: var(--white-60); }

.service-tile .label { margin-bottom: 12px; display: block; }
.service-tile h3 { color: var(--white); margin-bottom: 12px; }
.service-tile p { font-size: 0.9375rem; flex: 1; }

.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
  margin-top: 28px;
  transition: color 0.2s;
  text-decoration: none;
}

.service-tile:hover .service-tile-link { color: var(--white); }

/* ========== FOOTER ========== */
footer {
  padding: 64px 0 48px;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid var(--white-5);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer-links-group h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-40);
  margin-bottom: 16px;
}

.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-group a {
  color: var(--white-60);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--white-5);
}

.footer-copy { font-size: 12px; color: var(--white-20); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--white-20); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white-40); }
.footer-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); font-weight: 600; }

/* ========== SUBPAGE HERO ========== */
.subpage-hero {
  padding: 160px 0 80px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.subpage-hero .label { display: block; margin-bottom: 20px; }
.subpage-hero h1 { margin-bottom: 28px; }
.subpage-hero .lead { max-width: 680px; }

/* ========== CONTENT BLOCKS ========== */
.content-block {
  padding: 80px 0;
  border-top: 1px solid var(--white-5);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ========== CARDS ========== */
.card {
  padding: 36px 28px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: var(--white-20); transform: translateY(-2px); }
.card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.0625rem; }
.card p { font-size: 0.9375rem; line-height: 1.7; margin: 0; }

.card-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* ========== BULLET LIST ========== */
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.55;
}

.bullet-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white-30);
  flex-shrink: 0;
  margin-top: 8px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--white-60);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== CALLOUT ========== */
.callout {
  background: var(--white-2);
  border: 1px solid var(--white-20);
  border-radius: 16px;
  padding: 32px 36px;
}

.callout p { color: var(--white-80); font-size: 0.9375rem; line-height: 1.75; margin: 0; }
.callout strong { color: var(--white); }

/* ========== ONBOARDING / QUESTIONNAIRE ========== */
.onboarding-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.onboarding-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-5);
  padding: 0;
}

.onboarding-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
}

.onboarding-progress {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
}

.progress-track {
  height: 2px;
  background: var(--white-10);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  min-height: 100vh;
}

.q-container { width: 100%; max-width: 600px; }

.q-step-label { font-size: 12px; color: var(--white-40); font-weight: 500; margin-bottom: 10px; letter-spacing: 0.04em; }
.q-container h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 10px; color: var(--white); }
.q-container > p { color: var(--white-40); margin-bottom: 36px; font-size: 0.9375rem; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.opt {
  padding: 18px 20px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}

.opt:hover { border-color: var(--white-20); background: var(--white-10); }

.opt.selected {
  border-color: var(--gold);
  background: rgba(212,165,116,0.07);
}

.opt h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; letter-spacing: -0.01em; }
.opt p { font-size: 12px; color: var(--white-40); margin: 0; line-height: 1.4; }

.q-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

/* Language selector */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.lang-card {
  padding: 32px 20px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.lang-card:hover { border-color: var(--white-20); background: var(--white-10); }
.lang-card.selected { border-color: var(--gold); background: rgba(212,165,116,0.07); }
.lang-card .flag { font-size: 32px; margin-bottom: 12px; display: block; }
.lang-card h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.lang-card p { font-size: 12px; color: var(--white-40); margin: 0; }

/* Portfolio recommendation */
.portfolio-card {
  padding: 32px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  margin: 28px 0;
}

.portfolio-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  margin-bottom: 8px;
}

.portfolio-alloc {
  font-size: 0.8125rem;
  color: var(--white-40);
  margin-bottom: 20px;
}

.risk-bar-track {
  height: 4px;
  background: var(--white-10);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
}

.risk-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  border-radius: 4px;
}

.risk-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Account creation form */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-60);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--white-20);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

.form-input::placeholder { color: var(--white-20); }

/* Processing animation */
.processing {
  text-align: center;
  padding: 40px 0;
}

.processing-ring {
  width: 64px; height: 64px;
  border: 2px solid var(--white-10);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 28px;
}

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

/* ========== RWA PAGE ========== */
.rwa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.rwa-asset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  padding: 5px 14px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 12px;
  color: var(--white-60);
  font-weight: 500;
}

/* ========== STRUCTURING PAGE ========== */
.structure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(8,8,8,0.97);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(20px);
  padding: 20px 28px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--white-60); margin: 0; }
.cookie-banner a { color: var(--white-80); }

/* ========== FADE IN ========== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .rwa-services-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .section-pad-sm { padding: 56px 0; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.99);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 550;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; font-weight: 600; }

  .stats-strip .container { flex-direction: column; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--white-10); padding: 0 0 24px; width: 100%; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }

  .three-col, .four-col, .structure-row { grid-template-columns: 1fr; }

  .options-grid { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-banner { flex-direction: column; text-align: center; bottom: 12px; left: 12px; right: 12px; }

  h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-headline { font-size: clamp(3.25rem, 13vw, 5.5rem); }
}

@media (max-width: 480px) {
  .lang-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
}

/* ========== SUPPLEMENTAL COMPONENTS ========== */

/* Hero variants */
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white-40);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero-subpage {
  padding: 160px 0 80px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.hero-subpage .hero-eyebrow { margin-bottom: 20px; }
.hero-subpage h1 { margin-bottom: 24px; }
.hero-subpage .hero-sub { max-width: 640px; color: var(--white-60); }
.hero-subpage .hero-cta { justify-content: flex-start; }

.gold-period { color: var(--gold); }

/* Button size aliases */
.btn-small { padding: 10px 20px !important; font-size: 13px !important; }
.btn-large { padding: 18px 40px !important; font-size: 15px !important; }

/* Coming Soon state */
.btn-soon {
  background: var(--white) !important;
  color: var(--black) !important;
  border: none !important;
  cursor: default !important;
  pointer-events: none;
}
.btn-soon:hover { transform: none !important; box-shadow: none !important; }

.service-tile-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.service-tile.tile-soon {
  pointer-events: none;
  opacity: 0.65;
}
.service-tile.tile-soon:hover {
  border-color: var(--white-10) !important;
  background: var(--white-2) !important;
  transform: none !important;
}

/* Stats grid */
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-10);
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--white);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--white-40);
  font-weight: 400;
  white-space: nowrap;
}

/* Section headers */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--white-40);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-top: 16px;
}

.section-header {
  margin-bottom: 64px;
  padding: 80px 0 0;
}

.section-header h2 { color: var(--white); }

/* Process grid (4 cols) */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-connector {
  width: 32px;
  height: 1px;
  background: var(--white-10);
  margin-top: 32px;
  flex-shrink: 0;
}

.process-step {
  padding: 0 8px;
}

.process-step h4 { color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.process-step p { font-size: 0.875rem; line-height: 1.65; }

.process-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

/* Asset grid */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.asset-tile {
  padding: 32px 24px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.asset-tile:hover {
  border-color: var(--white-20);
  background: rgba(255,255,255,0.03);
}

.asset-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.asset-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.asset-tile h4 { color: var(--white); margin-bottom: 8px; }
.asset-tile p { font-size: 0.875rem; }

/* Portfolio tiers */
.portfolio-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 12px;
}

.tier-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.tier-bar-track {
  height: 4px;
  background: var(--white-10);
  border-radius: 4px;
  overflow: hidden;
}

.tier-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  border-radius: 4px;
}

.tier-alloc {
  font-size: 12px;
  color: var(--white-40);
  white-space: nowrap;
}

/* Service tiles (homepage) */
.service-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-tile-for {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: 12px;
}

/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  padding: 28px 24px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 14px;
}

.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 0.9375rem; }
.why-card p { font-size: 0.875rem; }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--white-10);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white-40);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--white-60);
  margin: 0;
}

/* CTA section */
.cta-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--white-5);
}

.cta-section h2 { color: var(--white); margin-bottom: 20px; }

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  padding: 64px 0 48px;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid var(--white-5);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white-40);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: var(--white-20);
  white-space: nowrap;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(8,8,8,0.97);
  border: 1px solid var(--white-10);
  backdrop-filter: blur(20px);
  padding: 20px 28px;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 1000;
  max-width: 900px;
  margin: 0 auto;
}

#cookie-banner p {
  font-size: 13px;
  color: var(--white-60);
  margin: 0;
}

#cookie-banner a { color: var(--white-80); }

/* ========== ONBOARDING FLOW ========== */
.onboarding-page {
  min-height: 100vh;
  background: rgba(0,0,0,0.92);
  position: relative;
  z-index: 1;
}

.onboarding-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-5);
}

.onboarding-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
}

.onboarding-step-label {
  font-size: 12px;
  color: var(--white-40);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.onboarding-progress-track {
  height: 2px;
  background: var(--white-10);
}

.onboarding-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.onboarding-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px 24px 60px;
}

.onboarding-card {
  width: 100%;
  max-width: 560px;
}

.onboarding-card h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 12px;
}

.onboarding-card > p, .onboarding-card p {
  color: var(--white-40);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

.ob-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}

.ob-lang-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}

.ob-lang-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  color: var(--white-80);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.ob-lang-btn:hover {
  border-color: var(--white-20);
  background: var(--white-10);
  color: var(--white);
}

.ob-lang-btn.selected {
  border-color: var(--gold);
  background: rgba(212,165,116,0.08);
  color: var(--white);
}

.ob-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.ob-option {
  padding: 16px 20px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ob-option:hover {
  border-color: var(--white-20);
  background: var(--white-10);
}

.ob-option.selected {
  border-color: var(--gold);
  background: rgba(212,165,116,0.07);
}

.ob-option strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.ob-option span {
  font-size: 12px;
  color: var(--white-40);
  line-height: 1.4;
}

.ob-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.ob-portfolio-card {
  padding: 28px 24px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  margin: 24px 0;
}

.ob-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ob-portfolio-header h3 {
  font-size: 1.5rem;
  color: var(--gold);
}

.ob-tier-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
}

.ob-portfolio-desc {
  color: var(--white-60) !important;
  font-size: 0.9375rem !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}

.ob-alloc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40) !important;
  margin-bottom: 6px !important;
}

.ob-alloc-value {
  font-size: 0.875rem;
  color: var(--white-60) !important;
  margin: 0 !important;
}

.ob-risk-bar-track {
  height: 4px;
  background: var(--white-10);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
}

.ob-risk-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--white));
  border-radius: 4px;
}

.ob-risk-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ob-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-60);
  letter-spacing: 0.04em;
}

.ob-field input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.ob-field input:focus { border-color: var(--white-20); }
.ob-field input::placeholder { color: var(--white-20); }

/* ========== RWA PAGE ========== */
.rwa-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rwa-service-card {
  padding: 40px 32px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
}

.rwa-service-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  margin-bottom: 24px;
}

.rwa-service-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.rwa-service-card h3 { color: var(--white); margin-bottom: 14px; }
.rwa-service-card p { font-size: 0.9375rem; margin-bottom: 24px; }

.rwa-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rwa-feature-list li {
  font-size: 0.875rem;
  color: var(--white-60);
  padding-left: 14px;
  position: relative;
}

.rwa-feature-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

.rwa-asset-card {
  padding: 36px 32px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: border-color 0.2s;
}

.rwa-asset-card:hover { border-color: var(--white-20); }

.rwa-asset-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
}

.rwa-asset-card h3 { color: var(--white); margin-bottom: 12px; }
.rwa-asset-card p { font-size: 0.9375rem; margin-bottom: 20px; }

.rwa-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rwa-tag {
  padding: 4px 12px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  font-size: 12px;
  color: var(--white-60);
  font-weight: 500;
}

/* ========== STRUCTURING PAGE ========== */
.struct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.struct-card {
  padding: 40px 32px;
  background: var(--white-2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: border-color 0.2s;
}

.struct-card:hover { border-color: var(--white-20); }

.struct-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-10);
  border-radius: 12px;
  margin-bottom: 24px;
}

.struct-icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.struct-card h3 { color: var(--white); margin-bottom: 14px; }
.struct-card p { font-size: 0.9375rem; margin-bottom: 24px; }

.struct-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.struct-feature-list li {
  font-size: 0.875rem;
  color: var(--white-60);
  padding-left: 14px;
  position: relative;
}

.struct-feature-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ========== AUTH PAGE (login) ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.92);
  position: relative;
  z-index: 1;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  border-bottom: 1px solid var(--white-5);
  flex-shrink: 0;
}

.auth-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
}

.auth-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 10px;
}

.auth-card > p {
  color: var(--white-40);
  font-size: 0.9375rem;
  margin: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-10);
}

.auth-divider span {
  font-size: 12px;
  color: var(--white-30);
  white-space: nowrap;
}

/* ========== RESPONSIVE OVERRIDES ========== */
@media (max-width: 1100px) {
  .asset-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rwa-service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .service-tiles { grid-template-columns: repeat(2, 1fr); }
  .ai-capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-connector { display: none; }
  .process-step { padding: 24px 0; border-bottom: 1px solid var(--white-5); }
  .process-step:last-child { border-bottom: none; }
  .service-tiles { grid-template-columns: 1fr; }
  .ai-capability-grid { grid-template-columns: 1fr; }
  .struct-grid { grid-template-columns: 1fr; }
  .rwa-asset-grid { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr; gap: 12px; }
  .tier-alloc { font-size: 11px; }
  .footer-content { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { gap: 16px; }
}

@media (max-width: 768px) {
  .asset-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; margin: 20px 0; }
  .stat-item { border-right: none; padding: 0 !important; }
  .hero-subpage { padding: 120px 0 60px; }
  #cookie-banner { flex-direction: column; text-align: center; bottom: 12px; left: 12px; right: 12px; }
  .onboarding-header-inner { padding: 0 20px; }
  .chatbot-frame-wrap iframe { min-height: 420px; }
  .ai-use-case-grid { grid-template-columns: 1fr; }
}

/* ========== DISCLOSURE ITEMS ========== */
.disc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-5);
  cursor: pointer;
  user-select: none;
}
.disc-item:first-child { border-top: 1px solid var(--white-5); }
.disc-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--white-20);
  border-radius: 5px;
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.disc-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.disc-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.disc-item:hover input[type="checkbox"] { border-color: var(--white-40); }
.disc-text { flex: 1; }
.disc-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.disc-download {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.disc-download:hover { opacity: 1; }
.disc-body {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
  margin-top: 6px;
}
.disc-body strong { color: var(--white-60); font-weight: 500; }

