:root {
  --blue-900: #0b2447;
  --blue-700: #19376d;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-50: #eff6ff;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --success: #15803d;
  --warning: #b45309;
  --danger: #b91c1c;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-500); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top bar */
.topbar {
  background: linear-gradient(180deg, #0b2447 0%, #0f2c5b 100%);
  color: #cfdcef;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topbar .pill {
  background: rgba(255,255,255,0.08);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d6e3f6;
}

/* Header / nav */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  display: grid; place-items: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
}
.brand .name {
  font-size: 1.08rem;
}
.brand .name small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 6px 2px;
}
.nav-links a.active { color: var(--blue-500); }
.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s, box-shadow 0.15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--blue-500);
  color: #fff;
}
.btn-primary:hover { background: #1d4ed8; }
.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border-color: #cbd5e1;
}
.btn-outline:hover { background: #f1f5f9; }
.btn-ghost {
  background: transparent;
  color: var(--blue-700);
}
.btn-block { width: 100%; }
.btn-lg { padding: 0.9rem 1.4rem; font-size: 1rem; }

/* Hero */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(37,99,235,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1rem;
  color: #0b2447;
}
.hero p.lead {
  font-size: 1.1rem;
  color: #334155;
  margin: 0 0 1.6rem;
  max-width: 560px;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e0ecff;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}
.hero .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero .meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.6rem; color: var(--muted); font-size: 0.85rem;
}
.hero .meta div { display: flex; align-items: center; gap: 6px; }
.hero .meta strong { color: #0b2447; font-weight: 600; }

/* Dashboard preview card */
.preview-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
}
.preview-card .pc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.preview-card .pc-head h3 { margin: 0; font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.preview-card .balance {
  font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: #0b2447;
}
.preview-card .change.pos { color: var(--success); font-size: 0.85rem; font-weight: 600; }
.preview-card .change.neg { color: var(--danger); font-size: 0.85rem; font-weight: 600; }
.preview-card .assets {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; margin: 1.2rem 0 1rem;
}
.asset-tile {
  background: #f7faff;
  border: 1px solid #e3ecf9;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
}
.asset-tile .sym {
  font-weight: 700; color: #0b2447; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
}
.asset-tile .sym .dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.asset-tile .amt { font-size: 0.95rem; font-weight: 600; margin-top: 4px; }
.asset-tile .usd { color: var(--muted); font-size: 0.78rem; }

.mini-tx {
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}
.mini-tx h4 { margin: 0 0 0.5rem; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.mini-tx .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  border-bottom: 1px dashed #eef2f7;
}
.mini-tx .row:last-child { border-bottom: none; }
.mini-tx .row .left { display: flex; align-items: center; gap: 8px; }
.mini-tx .row .icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
}
.mini-tx .row .icon.in { background: #dcfce7; color: #166534; }
.mini-tx .row .icon.out { background: #fee2e2; color: #991b1b; }
.mini-tx .row .amt { font-weight: 600; }

/* Sections */
section.block {
  padding: 4rem 0;
}
section.block.alt { background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section h2 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: #0b2447;
  margin: 0 0 0.5rem;
}
section .sub {
  color: var(--muted); margin-bottom: 2rem; max-width: 700px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  margin: 0.4rem 0 0.4rem;
  color: #0b2447;
  font-size: 1.05rem;
}
.card p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.card .ico {
  width: 38px; height: 38px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700);
  font-weight: 700;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.3rem;
  position: relative;
}
.step .num {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--blue-700);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.step h4 { margin: 0 0 0.35rem; font-size: 1rem; color: #0b2447; }
.step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Trust strip */
.trust-strip {
  background: #0b2447;
  color: #cfdcef;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-strip h4 { margin: 0 0 4px; color: #fff; font-size: 0.95rem; }
.trust-strip p { margin: 0; font-size: 0.85rem; color: #c2d3ec; }

/* Compliance / table */
.kv {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.kv .row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--border);
}
.kv .row:last-child { border-bottom: none; }
.kv .k { background: #f7faff; padding: 0.9rem 1rem; font-weight: 600; color: #0b2447; }
.kv .v { padding: 0.9rem 1rem; color: #1e293b; }

/* Forms */
.auth-shell {
  min-height: calc(100vh - 100px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fc 100%);
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-md);
}
.form-card h1 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
  color: #0b2447;
  letter-spacing: -0.01em;
}
.form-card .hint { color: var(--muted); margin: 0 0 1.4rem; font-size: 0.93rem; }

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #0b2447;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.field .check {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.88rem; color: #334155;
}
.field .check input { width: auto; margin-top: 3px; }

.form-foot {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.alert {
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.alert.info { background: #eff6ff; color: #1e3a8a; border: 1px solid #bfdbfe; }
.alert.warn { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.alert.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: none; }

/* Dashboard layout */
.dash-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 60px);
}
.dash-side {
  background: #0b2447;
  color: #cfdcef;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dash-side .acc {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 1rem;
}
.dash-side .acc .name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.dash-side .acc .tier {
  display: inline-block; margin-top: 4px;
  font-size: 0.7rem; padding: 2px 8px; border-radius: 999px;
  background: #1d4ed8; color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
}
.dash-side a {
  display: flex; align-items: center; gap: 8px;
  color: #cbd6e8; padding: 0.55rem 0.7rem; border-radius: 8px; font-size: 0.92rem;
}
.dash-side a:hover, .dash-side a.active {
  background: rgba(255,255,255,0.08); color: #fff; text-decoration: none;
}
.dash-side .spacer { flex: 1; }
.dash-side .foot { font-size: 0.74rem; color: #94a8c5; }

.dash-main { padding: 1.5rem 2rem; }
.dash-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1.2rem;
}
.dash-head h1 { margin: 0; font-size: 1.5rem; color: #0b2447; letter-spacing: -0.01em; }
.dash-head .sub { color: var(--muted); font-size: 0.9rem; }

.balance-card {
  background: linear-gradient(135deg, #19376d 0%, #2563eb 100%);
  border-radius: 14px;
  padding: 1.6rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.balance-card .label {
  font-size: 0.78rem; color: #c5d8f7; letter-spacing: 0.08em; text-transform: uppercase;
}
.balance-card .value {
  font-size: 2.4rem; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px;
}
.balance-card .delta {
  margin-top: 6px; font-size: 0.88rem; color: #c7f0d6;
}
.balance-card .actions { display: flex; gap: 0.5rem; }
.balance-card .actions .btn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.balance-card .actions .btn:hover { background: rgba(255,255,255,0.22); }

.dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}
.panel h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: #0b2447;
}

.assets-table {
  width: 100%; border-collapse: collapse; font-size: 0.92rem;
}
.assets-table th, .assets-table td {
  text-align: left; padding: 0.6rem 0.4rem; border-bottom: 1px solid var(--border);
}
.assets-table th { color: var(--muted); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.assets-table tr:last-child td { border-bottom: none; }
.assets-table .asset-name { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #0b2447; }
.assets-table .pill-pos { color: var(--success); font-weight: 600; }
.assets-table .pill-neg { color: var(--danger); font-weight: 600; }

.tx-list { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tx-list th, .tx-list td {
  text-align: left; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--border);
}
.tx-list th { color: var(--muted); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.tx-list tr:last-child td { border-bottom: none; }
.tx-list .tag {
  display: inline-block; font-size: 0.72rem;
  padding: 2px 8px; border-radius: 999px; font-weight: 600;
}
.tag.in { background: #dcfce7; color: #166534; }
.tag.out { background: #fee2e2; color: #991b1b; }
.tag.pending { background: #fef3c7; color: #92400e; }
.tx-list .hash { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--muted); font-size: 0.78rem; }

.notice {
  margin-top: 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* Page intro */
.page-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.2rem;
}
.page-intro h1 {
  margin: 0.2rem 0 0.5rem;
  font-size: 2rem;
  color: #0b2447;
  letter-spacing: -0.02em;
}
.page-intro p { color: var(--muted); margin: 0; max-width: 700px; }

.legal-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.4rem;
  margin: 2rem 0 4rem;
  line-height: 1.7;
  color: #1e293b;
}
.legal-body h2 { color: #0b2447; margin-top: 1.6rem; font-size: 1.2rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body ul { font-size: 0.95rem; }
.legal-body ul { padding-left: 1.4rem; }
.legal-body .meta { color: var(--muted); font-size: 0.85rem; }

/* Two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.fees-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.fees-table th, .fees-table td {
  padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--border); text-align: left;
}
.fees-table th { background: #f7faff; color: #0b2447; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Footer */
.site-footer {
  background: #06172f;
  color: #b9c8e2;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h5 {
  color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.8rem;
}
.site-footer a { color: #b9c8e2; display: block; padding: 3px 0; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.site-footer p { font-size: 0.88rem; line-height: 1.6; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: #8aa0c2;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.foot-disclaimer {
  font-size: 0.78rem;
  color: #8aa0c2;
  margin-top: 1rem;
  background: rgba(255,255,255,0.04);
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--blue-500);
  border-radius: 4px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: #0b2447;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.1rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side {
    flex-direction: row; flex-wrap: wrap; padding: 1rem;
  }
  .dash-side .acc { width: 100%; }
  .dash-side a { padding: 0.4rem 0.6rem; font-size: 0.85rem; }
  .dash-grid { grid-template-columns: 1fr; }
  .balance-card { grid-template-columns: 1fr; }
  .kv .row { grid-template-columns: 1fr; }
  .kv .k { background: #f7faff; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 0.6rem;
  }
  .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header { position: relative; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.7rem; }
  .dash-main { padding: 1rem; }
  .legal-body { padding: 1.4rem; }
  .topbar .container { font-size: 0.72rem; }
}

/* ===== Homepage extras ===== */
.assets-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.25rem}
.asset-card{background:#fff;border:1px solid #e5edf7;border-radius:14px;padding:1.25rem 1.25rem 1rem;box-shadow:0 1px 2px rgba(15,23,42,.04)}
.asset-card .asset-head{display:flex;align-items:center;gap:.6rem;margin-bottom:.4rem}
.asset-card h3{margin:0;font-size:1.05rem;color:#0b2545}
.asset-card h3 small{color:#64748b;font-weight:600;margin-left:.25rem;font-size:.8rem}
.asset-card p{color:#475569;font-size:.92rem;margin:.35rem 0 0}
.micro-note{margin-top:1rem;color:#64748b;font-size:.85rem}

.fees-table{overflow-x:auto;margin-top:1rem;border:1px solid #e5edf7;border-radius:14px;background:#fff}
.fees-table table{width:100%;border-collapse:collapse;min-width:560px}
.fees-table th,.fees-table td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid #eef2f8;font-size:.94rem}
.fees-table th{background:#f6f9ff;color:#0b2545;font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em}
.fees-table tr:last-child td{border-bottom:none}

.eligibility-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:1rem}
.eligibility-grid h4{margin:0 0 .5rem;color:#0b2545}
.check-list{list-style:none;padding:0;margin:0}
.check-list li{position:relative;padding:.35rem 0 .35rem 1.5rem;color:#334155}
.check-list li::before{content:"✓";position:absolute;left:0;top:.35rem;color:#1d4ed8;font-weight:800}

.risk-block{background:#fff7ed}
.risk-card{background:#fff;border:1px solid #fcd9b6;border-left:6px solid #f59e0b;border-radius:14px;padding:1.5rem 1.6rem}
.risk-card h2{color:#9a3412;margin-top:0}
.risk-card ul{margin:0;padding-left:1.1rem;color:#7c2d12}
.risk-card li{margin:.4rem 0;line-height:1.55}

.verify-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1rem}
.verify-card{display:block;background:#fff;border:1px solid #e5edf7;border-radius:14px;padding:1.25rem 1.4rem;text-decoration:none;color:inherit;transition:transform .15s ease,box-shadow .15s ease}
.verify-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(15,23,42,.08)}
.verify-card h4{margin:0 0 .35rem;color:#0b2545}
.verify-card p{margin:0;color:#475569;font-size:.92rem}
.verify-cta{display:inline-block;margin-top:.6rem;color:#1d4ed8;font-weight:700;font-size:.9rem}

.faq{margin-top:1rem;display:grid;gap:.6rem}
.faq details{background:#fff;border:1px solid #e5edf7;border-radius:12px;padding:.9rem 1.1rem}
.faq summary{cursor:pointer;font-weight:600;color:#0b2545;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";float:right;color:#1d4ed8;font-weight:800}
.faq details[open] summary::after{content:"–"}
.faq details p{margin:.6rem 0 0;color:#475569;line-height:1.55}

@media (max-width: 760px){
  .assets-grid{grid-template-columns:1fr}
  .eligibility-grid{grid-template-columns:1fr}
  .verify-grid{grid-template-columns:1fr}
}
