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

:root {
  --brand: #9b00e8;
  --brand-d: #7a00b8;
  --accent: #2f4cff;
  --navy: #16163c;
  --ink: #33334a;
  --gray: #6b7280;
  --line: #e6e6ef;
  --bg: #f5f4f8;
  --green: #1f9d55;
  --amber: #d9822b;
  --red: #b02a37;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font);
  color: var(--ink);
}

.promo {
  background: linear-gradient(90deg, var(--accent), var(--brand));
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px;
}

nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  cursor: pointer;
}

.logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  background: var(--brand);
}

.logo .nm small {
  color: var(--gray);
  font-weight: 600;
}

nav .sp {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brandsw {
  display: flex;
  gap: 5px;
  background: #f1f0f6;
  border-radius: 999px;
  padding: 4px;
}

.brandsw button {
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--gray);
}

.brandsw button.active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.wrap {
  max-width: 660px;
  margin: 26px auto;
  padding: 0 18px;
}

h1 {
  font-size: 30px;
  line-height: 1.14;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 800;
}

.lede {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 22px rgba(20, 20, 60, .05);
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin: 14px 0 6px;
}

input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
}

input:focus {
  outline: none;
  border-color: var(--brand);
}

select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

select:focus {
  outline: none;
  border-color: var(--brand);
}

textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font-size: 15px;
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  resize: vertical;
  min-height: 80px;
}

textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  width: 100%;
  margin-top: 18px;
}

.primary {
  background: var(--brand);
  color: #fff;
}

.primary:hover {
  background: var(--brand-d);
}

.ghost {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand);
  margin-top: 10px;
}

.link {
  background: none;
  border: 0;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font);
  margin-top: 12px;
  text-decoration: underline;
}

.hint {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}

.err {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-top: 10px;
}

.chooser {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.choice {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  transition: .15s;
}

.choice:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.choice h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.choice p {
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
}

.choice .go {
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

.center {
  text-align: center;
  padding: 14px 6px;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 5px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  margin: 8px auto 14px;
  animation: spin .9s linear infinite;
}

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

.ricon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 4px auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-weight: 800;
}

.ok {
  background: var(--green);
}

.verify {
  background: var(--brand);
}

.review {
  background: var(--amber);
}

.deny {
  background: var(--red);
}

.block {
  background: var(--gray);
}

.rtitle {
  text-align: center;
  color: var(--navy);
  font-size: 21px;
  margin: 0 0 8px;
  font-weight: 800;
}

.rbody {
  text-align: center;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 460px;
}

.detail {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 18px;
  font-size: 14px;
}

.detail div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}

.detail div:last-child {
  border: 0;
}

.detail .k {
  color: var(--gray);
}

.detail .v {
  color: var(--navy);
  font-weight: 600;
}

.otp {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 18px 0 4px;
}

.otp input {
  width: 46px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.fees {
  background: color-mix(in srgb, var(--brand) 7%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, #fff);
  border-radius: 11px;
  padding: 14px 16px;
  font-size: 14px;
  margin-top: 16px;
}

.fees .ln {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}

.fees .nb {
  border-top: 1px dashed color-mix(in srgb, var(--brand) 35%, #fff);
  margin-top: 6px;
  padding-top: 8px;
  font-weight: 800;
  color: var(--brand);
}

.ref {
  text-align: center;
  color: var(--gray);
  font-size: 12.5px;
  margin-top: 16px;
}

.tag {
  display: inline-block;
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.foot {
  text-align: center;
  color: var(--gray);
  font-size: 12px;
  padding: 20px;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
}

.b-jira {
  background: #dde3ff;
  color: #2f4cff;
}

.b-otp {
  background: #f0e7fb;
  color: #9b00e8;
}

.b-dedupe {
  background: #fff2d9;
  color: #9a6700;
}
