:root {
  --navy: #0B1E3D;
  --gold: #C89B3C;
  --bg-top: #EFF5FF;
  --bg: #F7F9FC;
  --card-bg: #FFFFFF;
  --border: #E7EBF2;
  --ink: #1B2430;
  --muted: #64748B;

  --customer: #2563EB;
  --customer-soft: #E7EFFE;
  --banker: #16A34A;
  --banker-soft: #E8F7EE;
  --dsa: #7C3AED;
  --dsa-soft: #F2EBFE;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 320px);
  color: var(--ink);
  margin: 0;
  min-height: 100vh;
}

.shell {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 6px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(11, 30, 61, 0.12);
}

.brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand-script {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: var(--customer);
  font-size: 15px;
  margin-top: -2px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  margin: 4px 0 0;
}
.back-link:hover { color: var(--navy); }
.back-link svg { width: 16px; height: 16px; }

.hero-text {
  text-align: center;
  padding: 10px 24px 22px;
}

h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 10px 0;
}

.lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto;
  max-width: 36ch;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 20px 28px;
}

.role-card {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 22px -10px rgba(11, 30, 61, 0.18);
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.role-visual {
  flex: 0 0 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.role-visual svg { width: 62%; height: 62%; }

.role-card.customer .role-visual { background: linear-gradient(160deg, var(--customer-soft), #DCE9FF); }
.role-card.banker .role-visual { background: linear-gradient(160deg, var(--banker-soft), #D9F3E3); }
.role-card.dsa .role-visual { background: linear-gradient(160deg, var(--dsa-soft), #E8DBFD); }

.role-content {
  flex: 1;
  padding: 16px 16px 16px 18px;
  display: flex;
  flex-direction: column;
}

.role-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 1px;
}

.role-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}

.role-checks {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.role-checks li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.35;
}

.role-checks svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

.role-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  transition: transform 0.15s ease;
}

.role-card:hover .role-btn { transform: translateX(2px); }

.customer .role-checks svg { stroke: var(--customer); }
.customer .role-btn { background: linear-gradient(135deg, var(--customer), #1D4ED8); }

.banker .role-checks svg { stroke: var(--banker); }
.banker .role-btn { background: linear-gradient(135deg, var(--banker), #15803D); }

.dsa .role-checks svg { stroke: var(--dsa); }
.dsa .role-btn { background: linear-gradient(135deg, var(--dsa), #6D28D9); }

.role-btn svg { width: 15px; height: 15px; stroke: #fff; }

.footer-wave {
  margin-top: auto;
  width: 100%;
  display: block;
}

.footer-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  padding: 0 24px 28px;
  line-height: 1.6;
}

@media (max-width: 380px) {
  h1 { font-size: 26px; }
  .role-title { font-size: 15.5px; }
}
