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

:root {
  --navy: #0a0e1a;
  --navy-mid: #131929;
  --navy-light: #1e2d4a;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --white: #ffffff;
  --text-muted: #8a9ab5;
  --border: #2a3a5a;
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --info: #3498db;
  --secondary: #6c7a99;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  background: var(--navy-light);
  color: var(--white);
  border: 1px solid var(--border);
}

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

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-success:hover {
  background: #27ae60;
  color: #fff;
  transform: translateY(-1px);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background: #c0392b;
  color: #fff;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 14px;
  color: #b0bfd8;
}

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

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control option {
  background: var(--navy-mid);
  color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

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

/* ===================== CARDS ===================== */
.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.08);
}

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

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ===================== BADGES ===================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-success { background: rgba(46,204,113,0.15); color: var(--success); border: 1px solid rgba(46,204,113,0.3); }
.badge-warning { background: rgba(243,156,18,0.15); color: var(--warning); border: 1px solid rgba(243,156,18,0.3); }
.badge-danger  { background: rgba(231,76,60,0.15); color: var(--danger); border: 1px solid rgba(231,76,60,0.3); }
.badge-info    { background: rgba(52,152,219,0.15); color: var(--info); border: 1px solid rgba(52,152,219,0.3); }
.badge-secondary { background: rgba(108,122,153,0.2); color: var(--secondary); border: 1px solid rgba(108,122,153,0.3); }

/* ===================== TABLES ===================== */
.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table thead tr {
  background: var(--navy-light);
}

table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

table tbody tr {
  border-bottom: 1px solid rgba(42, 58, 90, 0.5);
  transition: background 0.15s;
}

table tbody tr:nth-child(even) {
  background: rgba(19, 25, 41, 0.5);
}

table tbody tr:hover {
  background: rgba(30, 45, 74, 0.6);
}

table tbody td {
  padding: 13px 16px;
  color: #ccd6ea;
}

/* ===================== ALERTS ===================== */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success { background: rgba(46,204,113,0.12); color: var(--success); border: 1px solid rgba(46,204,113,0.25); }
.alert-error   { background: rgba(231,76,60,0.12); color: var(--danger); border: 1px solid rgba(231,76,60,0.25); }
.alert-warning { background: rgba(243,156,18,0.12); color: var(--warning); border: 1px solid rgba(243,156,18,0.25); }
.alert-info    { background: rgba(52,152,219,0.12); color: var(--info); border: 1px solid rgba(52,152,219,0.25); }

/* ===================== AUTH PAGES ===================== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 20px;
}

.auth-box {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.auth-logo p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===================== LANDING PAGE ===================== */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 58, 90, 0.5);
}

.landing-nav .logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

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

.landing-nav .nav-links a {
  color: #b0bfd8;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.landing-nav .nav-links a:hover {
  color: var(--gold);
}

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  line-height: 1;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(ellipse at top, #1e2d4a 0%, #0a0e1a 60%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.04) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 90px 60px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* About */
.about-section {
  background: var(--navy-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-stat {
  padding: 20px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.about-stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}

.about-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Investment Approach */
.approach-section {
  background: var(--navy);
}

.approach-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.approach-item:hover {
  border-color: var(--gold);
}

.approach-num {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.approach-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.approach-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Trust */
.trust-section {
  background: var(--navy-mid);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.trust-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.trust-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.trust-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 48px 60px;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

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

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 12px;
  color: #4a5a7a;
  line-height: 1.7;
}

.footer-copy {
  font-size: 13px;
  color: #3a4a6a;
}

/* ===================== ONBOARDING ===================== */
.onboarding-page {
  min-height: 100vh;
  background: var(--navy);
  padding: 40px 20px;
}

.onboarding-container {
  max-width: 680px;
  margin: 0 auto;
}

.onboarding-header {
  text-align: center;
  margin-bottom: 40px;
}

.onboarding-header .logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 24px;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.step-dot.done {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.step-line {
  height: 2px;
  width: 60px;
  background: var(--border);
}

.step-line.done {
  background: var(--success);
}

.onboarding-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}

.onboarding-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.onboarding-card .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.upload-area {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--gold);
}

.upload-area input[type="file"] {
  display: none;
}

.upload-area .upload-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.upload-area p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.upload-area .file-name {
  font-size: 13px;
  color: var(--gold);
  margin-top: 8px;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 120px;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px;
  background: var(--navy);
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.radio-option label:hover {
  border-color: var(--gold);
}

.radio-option input:checked + label {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}

.radio-option .radio-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.radio-option .radio-label {
  font-size: 14px;
  font-weight: 600;
}

.radio-option .radio-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.terms-box {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  max-height: 300px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.terms-box::-webkit-scrollbar { width: 6px; }
.terms-box::-webkit-scrollbar-track { background: var(--navy-mid); }
.terms-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.checkbox-item span {
  font-size: 14px;
  color: #b0bfd8;
  line-height: 1.5;
}

.status-card {
  text-align: center;
  padding: 50px 40px;
}

.status-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.status-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.status-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

/* ===================== NOTICE BOX ===================== */
.notice-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice-box .notice-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.notice-box .notice-text {
  font-size: 14px;
  color: #b0bfd8;
  line-height: 1.6;
}

.notice-box .notice-text strong {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  section { padding: 60px 24px; }
  .landing-nav { padding: 16px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .landing-nav .nav-links { display: none; }
  .hero h1 { font-size: 32px; }
  .auth-box { padding: 28px 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
  section { padding: 50px 16px; }
}

/* fix: table-wrapper scrollable on all screens */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Utility */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.w-100 { width: 100%; }

/* ===================== MOBILE RESPONSIVE — MAIN ===================== */
@media (max-width: 768px) {
  /* Nav */
  .landing-nav {
    padding: 14px 18px;
    position: sticky;
    top: 0;
  }
  .landing-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 0;
    z-index: 200;
    gap: 0;
  }
  .landing-nav .nav-links.mobile-open { display: flex; }
  .landing-nav .nav-links a {
    padding: 12px 20px;
    font-size: .95rem;
    border-bottom: 1px solid rgba(42,58,90,.3);
  }
  .landing-nav .nav-links a:last-child { border-bottom: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 50px 18px 40px; }
  .hero h1 { font-size: 28px; line-height: 1.3; }
  .hero p   { font-size: 14px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-eyebrow { font-size: 11px; }

  /* Sections */
  section { padding: 50px 18px; }
  .section-title    { font-size: 24px; }
  .section-subtitle { font-size: 13px; }
  .section-eyebrow  { font-size: 11px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-stat .number { font-size: 28px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { padding: 20px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item { padding: 18px; }

  /* Approach */
  .approach-list { gap: 16px; }
  .approach-item { gap: 14px; }
  .approach-num  { width: 36px; height: 36px; font-size: .9rem; flex-shrink: 0; }

  /* Auth box */
  .auth-container { padding: 20px 16px; }
  .auth-box { padding: 24px 16px; border-radius: 12px; max-width: 100%; }
  .auth-box h1  { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* Onboarding */
  .onboarding-card { padding: 20px 16px; }
  .status-card { padding: 28px 16px; }
  .step-line { width: 30px; }
  .step-dot  { width: 30px; height: 30px; font-size: 12px; }
  .onboarding-page { padding: 20px 12px; }

  /* Tables */
  .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 480px; }

  /* Radio options */
  .radio-option { width: 100%; }

  /* Footer */
  footer { padding: 40px 18px 24px; }
  .footer-links { flex-wrap: wrap; gap: 10px 16px; justify-content: center; }
  .footer-disclaimer { font-size: 11px; }

  /* Notices */
  .notice-box { padding: 14px 16px; flex-direction: column; gap: 8px; }

  /* Deposit/withdraw pages */
  .deposit-status-box { padding: 30px 18px; }
  .instructions-panel { padding: 18px; }
  .instruction-row { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
  .auth-box { padding: 20px 14px; }
}
