/* Side Street — Global Styles
   Light editorial aesthetic: cream + deep navy + copper — mirrors the logo */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:           #F7F3EE;
  --surface:      #FFFFFF;
  --surface-2:    #F0EBE4;
  --surface-3:    #E8E2DA;
  --border:       #DDD6CC;
  --border-light: #C8BFB3;
  --copper:       #C98577;
  --copper-light: #D4978A;
  --copper-deep:  #A86555;
  --copper-dim:   rgba(201,133,119,.12);
  --copper-border: rgba(201,133,119,.30);
  --navy:         #1E2D3D;
  --navy-mid:     #2E4560;
  --text:         #1E2D3D;
  --text-dim:     #5A6A7E;
  --text-faint:   #8A9AAD;
  --red:          #C0392B;
  --green:        #27835B;
  --blue:         #2469A6;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(30,45,61,.10);
  --shadow-sm:    0 2px 8px rgba(30,45,61,.08);
  --shadow-lg:    0 8px 40px rgba(30,45,61,.14);
  --transition:   .18s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--copper); text-decoration: none; }
a:hover { color: var(--copper-deep); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -.02em;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-dim);
  font-size: .9rem;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--surface-2);
}

/* ============================================================
   HERO (landing page)
   ============================================================ */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--copper-dim);
  border: 1px solid var(--copper-border);
  color: var(--copper-deep);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero h1 em {
  font-style: italic;
  color: var(--copper);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS (landing)
   ============================================================ */
.how-it-works {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.section-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 52px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--copper-dim);
  border: 1px solid var(--copper-border);
  color: var(--copper-deep);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   AUTH CARD (landing)
   ============================================================ */
.auth-section {
  padding: 60px 24px 100px;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 4px;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  border: none;
  background: none;
}

.auth-tab.active {
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  padding: 10px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-dim);
}

.form-input::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-select { cursor: pointer; background: var(--surface); }

.form-select option { background: var(--surface); color: var(--text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: .8rem;
  color: var(--text-faint);
  margin-top: 4px;
}

.form-error {
  font-size: .85rem;
  color: var(--red);
  margin-top: 6px;
}

/* Checkboxes */
.check-group { display: flex; flex-wrap: wrap; gap: 8px; }

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: .9rem;
  color: var(--text-dim);
  user-select: none;
}

.check-item input[type="checkbox"] { display: none; }

.check-item:has(input:checked),
.check-item.checked {
  border-color: var(--copper);
  background: var(--copper-dim);
  color: var(--copper-deep);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 11px 22px;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--copper);
  color: #fff;
}
.btn-primary:hover { background: var(--copper-deep); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dim);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); }

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--navy); background: var(--surface-2); border-color: var(--border-light); }

.btn-danger {
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.25);
  color: var(--red);
}
.btn-danger:hover { background: rgba(192,57,43,.15); }

.btn-sm { font-size: .85rem; padding: 8px 14px; }
.btn-lg { font-size: 1.05rem; padding: 14px 30px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.page-header {
  padding: 36px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 4px;
}

.page-header p { color: var(--text-dim); font-size: .95rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

.stat-sub {
  font-size: .8rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ============================================================
   CARDS (items)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover { border-color: var(--border-light); box-shadow: var(--shadow); }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.card-sub {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: 3px;
}

.card-actions { display: flex; gap: 6px; }

.card-body { display: flex; flex-direction: column; gap: 10px; }

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

.card-row-label { color: var(--text-faint); }
.card-row-value { color: var(--text-dim); font-weight: 500; }

.card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 20px;
}

.badge-gold {
  background: var(--copper-dim);
  border: 1px solid var(--copper-border);
  color: var(--copper-deep);
}

.badge-green {
  background: rgba(39,131,91,.1);
  border: 1px solid rgba(39,131,91,.25);
  color: var(--green);
}

.badge-blue {
  background: rgba(36,105,166,.1);
  border: 1px solid rgba(36,105,166,.25);
  color: var(--blue);
}

.badge-gray {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: .78rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ============================================================
   SCORE RING
   ============================================================ */
.score-ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.score-high { background: rgba(39,131,91,.12); border: 2px solid var(--green); color: var(--green); }
.score-mid  { background: var(--copper-dim); border: 2px solid var(--copper); color: var(--copper-deep); }
.score-low  { background: var(--surface-2); border: 2px solid var(--border); color: var(--text-dim); }

/* ============================================================
   MATCH CARD
   ============================================================ */
.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 12px;
  transition: border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.match-card:hover { border-color: var(--border-light); }

.match-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.match-info { flex: 1; }
.match-title { font-size: 1rem; font-weight: 600; color: var(--navy); }
.match-sub { font-size: .85rem; color: var(--text-dim); margin-top: 4px; }

.match-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.match-detail-label { font-size: .75rem; color: var(--text-faint); margin-bottom: 2px; }
.match-detail-value { font-size: .9rem; color: var(--text); font-weight: 500; }

.contact-hidden {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-faint);
}

.contact-revealed {
  padding: 16px;
  background: rgba(39,131,91,.07);
  border: 1px solid rgba(39,131,91,.2);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
}

/* ============================================================
   SECTIONS / PAGE LAYOUT
   ============================================================ */
.page-main {
  padding: 0 0 80px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.empty-state p { color: var(--text-dim); margin-bottom: 16px; }

/* ============================================================
   FORM PAGE
   ============================================================ */
.form-page {
  padding: 0 0 80px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-section-title {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin: 28px 0 20px;
}

/* ============================================================
   TOAST / ALERTS
   ============================================================ */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-msg {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: .9rem;
  color: var(--text);
  box-shadow: var(--shadow);
  animation: slideIn .2s ease;
  pointer-events: auto;
}

.toast-msg.success { border-color: rgba(39,131,91,.4); }
.toast-msg.error { border-color: rgba(192,57,43,.4); color: var(--red); }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LOADER
   ============================================================ */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--copper);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

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

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.text-dim { color: var(--text-dim); }
.text-gold { color: var(--copper); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ============================================================
   ACCREDITED INVESTOR MODAL
   ============================================================ */
.accredited-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.accredited-modal.active { display: flex; }

.accredited-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,45,61,.70);
  backdrop-filter: blur(4px);
}

.accredited-modal-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.accredited-modal-icon {
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 18px;
}

.accredited-modal-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.accredited-modal-body {
  color: var(--text-dim);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.accredited-modal-sub {
  color: var(--text-faint);
  font-size: .82rem;
  margin-bottom: 32px;
}

.accredited-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   ASSET CLASSES SECTION
   ============================================================ */
.asset-classes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 24px;
}

.asset-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.asset-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.asset-card--live { border-color: var(--copper-border); }
.asset-card--live:hover { border-color: var(--copper); }

.asset-card--soon { opacity: .8; }

.asset-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}

.asset-status {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.asset-status--live {
  background: rgba(39,131,91,.10);
  color: var(--green);
  border: 1px solid rgba(39,131,91,.25);
}

.asset-status--soon {
  background: var(--copper-dim);
  color: var(--copper-deep);
  border: 1px solid var(--copper-border);
}

.asset-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.01em;
}

.asset-card p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
}

.asset-legal-note {
  font-size: .78rem;
  color: var(--text-faint);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.asset-legal-note a { color: var(--text-faint); text-decoration: underline; }
.asset-legal-note a:hover { color: var(--text-dim); }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 36px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 720px;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: .8rem;
}

.footer-links a {
  color: rgba(255,255,255,.38);
  text-decoration: underline;
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,.65); }

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.28);
}

/* ============================================================
   DISCLAIMER PAGE
   ============================================================ */
.disclaimer-page {
  padding: 60px 0 80px;
}

.disclaimer-header {
  margin-bottom: 48px;
}

.disclaimer-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
  margin: 8px 0;
}

.disclaimer-date {
  font-size: .85rem;
  color: var(--text-faint);
  margin-top: 8px;
}

.disclaimer-sections {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.disclaimer-section h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.disclaimer-section p {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.disclaimer-section p + p { margin-top: 10px; }

.disclaimer-contact {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .asset-grid { grid-template-columns: 1fr; gap: 16px; }
  .accredited-modal-box { padding: 28px 22px; }
  .nav { padding: 14px 20px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .nav-links a { padding: 6px 8px; font-size: .85rem; }
  .hero { padding: 60px 16px 48px; }
  .auth-card { padding: 28px 22px; }
  .form-card { padding: 22px 18px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .disclaimer-header h1 { font-size: 1.5rem; }
  .nav-logo img { height: 36px; }
}
