@font-face {
  font-family: 'BRCandor';
  src: url('../fonts/BRCandor-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'BRCandor';
  src: url('../fonts/BRCandor-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'BRCandor';
  src: url('../fonts/BRCandor-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

:root {
  --v2-bg: #010101;
  --v2-white: #ffffff;
  --v2-green: #0bd600;
  --v2-green-bright: #0df500;
  --v2-ink: #231f20;
  --v2-card-border: rgba(11, 214, 0, 0.12);
  --v2-card-fill: rgba(14, 16, 11, 0.1);
  --v2-card-glow: inset 0 0 13px 0 rgba(11, 214, 0, 0.2);
  --v2-input-fill: rgba(16, 18, 17, 0.4);
  --v2-input-glow: inset 0 0 7px 0 rgba(11, 214, 0, 0.3);
  --v2-width: 480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--v2-bg);
  color: var(--v2-white);
  font-family: 'BRCandor', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: none;
}

button,
input {
  font-family: inherit;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.v2-shell {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--v2-bg);
}

.v2-page {
  width: 100%;
  max-width: var(--v2-width);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--v2-bg);
}

.v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--v2-bg);
  background-image:
    radial-gradient(ellipse 90% 42% at 50% -4%, rgba(11, 214, 0, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 28% at 88% 18%, rgba(11, 214, 0, 0.1), transparent 62%),
    url('../img/v2/bg.png');
  background-size: cover;
  background-position: center top;
}

.v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 32px 20px 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.v2-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.v2-hero-copy {
  width: 180px;
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}

.v2-logo {
  width: 115.2px;
  height: 32px;
  overflow: hidden;
}

.v2-logo img {
  width: 115.2px;
  height: 32px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.v2-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--v2-white);
}

.v2-title span {
  color: var(--v2-green);
}

.v2-subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--v2-white);
  opacity: 0.6;
}

.v2-profile {
  position: relative;
  width: 148.5px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  box-shadow: var(--v2-card-glow);
  display: flex;
  justify-content: center;
}

.v2-profile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-profile-inner {
  position: relative;
  z-index: 1;
  width: 108.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.v2-profile-top {
  width: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.v2-avatar-ring {
  width: 82.4px;
  height: 82.4px;
  padding: 2px;
  border: 0.521px solid var(--v2-green);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-avatar-ring img {
  width: 77.887px;
  height: 77.887px;
  border-radius: 50%;
  object-fit: cover;
}

.v2-profile-name {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--v2-white);
}

.v2-profile-company {
  margin: 2px 0 0;
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--v2-white);
}

.v2-verified {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.v2-verified-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.v2-verified-badge {
  width: 12px;
  height: 12px;
  padding: 1px;
  border-radius: 32px;
  background: var(--v2-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-verified-badge img {
  width: 10px;
  height: 10px;
}

.v2-verified-text {
  font-size: 7px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--v2-white);
  white-space: nowrap;
}

.v2-verified-line {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, rgba(11, 214, 0, 0), rgba(11, 214, 0, 0.45), rgba(11, 214, 0, 0));
}

.v2-exchange {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  margin: -52px auto -28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-exchange img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.v2-form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-form-card {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  box-shadow: var(--v2-card-glow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-form-head,
.v2-fields {
  position: relative;
  z-index: 1;
}

.v2-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2-form-icon {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  border: 0.5px solid rgba(11, 214, 0, 0.07);
  box-shadow: 0 2px 4px 0 rgba(33, 61, 31, 0.37), inset 0 0 9px 0 rgba(11, 214, 0, 0.35);
  overflow: visible;
  flex: 0 0 40px;
}

.v2-form-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(11, 214, 0, 0) 61.568%, rgba(11, 214, 0, 0.22) 88.846%),
    linear-gradient(90deg, rgba(61, 75, 58, 0.09) 0%, rgba(61, 75, 58, 0.09) 100%);
  pointer-events: none;
}

.v2-form-icon img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.v2-form-icon--photo {
  cursor: pointer;
  background: transparent;
}

.v2-photo-plus {
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--v2-green);
  border: 2px solid var(--v2-bg);
}

.v2-photo-plus::before,
.v2-photo-plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--v2-ink);
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.v2-photo-plus::before {
  width: 7px;
  height: 1.5px;
}

.v2-photo-plus::after {
  width: 1.5px;
  height: 7px;
}

.v2-form-icon.has-photo {
  padding: 0;
}

.v2-form-icon.has-photo::before {
  display: none;
}

.v2-form-icon.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.v2-form-copy {
  width: 180px;
}

.v2-form-title {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--v2-white);
}

.v2-form-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--v2-white);
  opacity: 0.6;
}

.v2-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-field {
  position: relative;
  width: 100%;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--v2-card-border);
  border-radius: 12px;
  box-shadow: var(--v2-input-glow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-field::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--v2-input-fill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.v2-field img {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.v2-field input {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  background: transparent;
  color: var(--v2-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0;
}

.v2-field input::placeholder {
  color: var(--v2-white);
  opacity: 1;
}

.v2-field--error {
  border-color: rgba(255, 92, 92, 0.55);
  box-shadow: inset 0 0 7px 0 rgba(255, 92, 92, 0.25);
}

.v2-field--meet {
  align-items: flex-start;
  padding-top: 8px;
  padding-bottom: 8px;
}

.v2-field--meet img {
  margin-top: 3px;
}

.v2-field-stack {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.v2-field-hint {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--v2-white);
  opacity: 0.6;
}

.v2-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-note img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.v2-note p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--v2-white);
  opacity: 0.6;
}

.v2-cta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.v2-cta-btn {
  width: 100%;
  padding: 20px 10px;
  border-radius: 60px;
  background: var(--v2-green);
  border: 2px solid var(--v2-green-bright);
  box-shadow: 0 0 15px rgba(13, 245, 0, 0.4);
  color: var(--v2-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  cursor: pointer;
}

.v2-cta-btn:active {
  transform: scale(0.985);
}

.v2-cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.v2-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
  will-change: transform, opacity;
}

.v2-screen--details {
  transform: translateX(0);
  opacity: 1;
}

.v2-screen--context {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-context .v2-screen--details {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-context .v2-screen--context {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.v2-screen--identity {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-identity .v2-screen--details {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-identity .v2-screen--context {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-identity .v2-screen--identity {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.v2-screen--sent {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-sent .v2-screen--details {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-sent .v2-screen--context {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-sent .v2-screen--identity {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-sent .v2-screen--sent {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 4;
}

.v2-main--sent {
  padding-top: 16px;
}

.v2-logo--center {
  align-self: center;
}

.v2-main--sent .v2-logo,
.v2-main--status .v2-logo {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.v2-sent-body {
  width: 100%;
  margin: auto 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.v2-badge {
  flex: 0 0 auto;
}

.v2-badge-ring {
  display: flex;
  padding: 8px;
  border: 2px solid rgba(11, 214, 0, 0.1);
  border-radius: 128px;
}

.v2-badge-core {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(11, 214, 0, 0.24);
  border-radius: 100px;
  box-shadow: 0 0 30px 0 rgba(11, 214, 0, 0.6), inset 0 0 24px 0 rgba(11, 214, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-badge-core::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-badge-core img {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
}

.v2-sent-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.v2-sent-copy {
  width: 281px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.v2-sent-foot {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.v2-details {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  box-shadow: var(--v2-card-glow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-details::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-detail-row {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-detail-row + .v2-detail-row {
  border-top: 1px solid rgba(11, 214, 0, 0.1);
}

.v2-detail-row img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v2-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.v2-detail-title {
  margin: 0 0 -4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.v2-detail-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
  white-space: nowrap;
}

.v2-note--lock p {
  width: 213px;
  max-width: 100%;
}

.v2-cta--stack {
  flex-direction: column;
  gap: 12px;
}

.v2-status-link {
  padding: 0;
  background: transparent;
  color: var(--v2-green);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
}

.v2-screen--status {
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-status .v2-screen--details {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-status .v2-screen--context {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-status .v2-screen--identity {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-status .v2-screen--sent {
  transform: translateX(-28%);
  opacity: 0;
  pointer-events: none;
}

.v2-page.is-status .v2-screen--status {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
}

.v2-main--status {
  padding-top: 16px;
}

.v2-status-wait {
  width: 100%;
  margin: auto 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.v2-status-wait-top {
  width: 281px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v2-wait-icon {
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-wait-icon img {
  width: 144px;
  height: 144px;
  animation: v2-pulse 2s ease-in-out infinite;
}

@keyframes v2-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.v2-wait-title {
  width: 100%;
  padding: 0;
  background: transparent;
  color: var(--v2-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.v2-status-info {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  box-shadow: var(--v2-card-glow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v2-status-info::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-status-info img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v2-status-info-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.v2-status-info-title {
  margin: 0 0 -4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.v2-status-info-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
}

.v2-status-approved {
  width: 100%;
  margin-top: 24px;
  display: flex;
}

.v2-status-card {
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  box-shadow: var(--v2-card-glow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.v2-status-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-status-profile {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.v2-status-avatar {
  position: relative;
  width: 94px;
  height: 94px;
  padding: 2px;
  border: 1px solid rgba(11, 214, 0, 0.12);
  border-radius: 100px;
  flex: 0 0 94px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-status-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.v2-status-verified {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 32px;
  height: 32px;
}

.v2-status-who {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.v2-status-who-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.v2-status-name {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.v2-status-role {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.6;
}

.v2-status-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  border: 1px solid var(--v2-card-border);
  border-radius: 8px;
  box-shadow: inset 0 0 7px 0 rgba(11, 214, 0, 0.3);
}

.v2-status-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--v2-input-fill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.v2-status-pill span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.v2-status-pill img {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
}

.v2-status-rows {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v2-contact-row {
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

a.v2-contact-row {
  text-decoration: none;
  color: inherit;
}

.v2-contact-row + .v2-contact-row {
  border-top: 1px solid rgba(11, 214, 0, 0.1);
}

.v2-contact-row img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v2-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.v2-contact-title {
  margin: 0 0 -4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
}

.v2-contact-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
  white-space: nowrap;
}

.v2-contact-row--single .v2-contact-title {
  margin-bottom: 0;
}

.v2-cta-btn--ghost {
  background: var(--v2-bg);
  border: 1px solid rgba(13, 245, 0, 0.15);
  box-shadow: none;
  color: var(--v2-white);
}

.v2-screen--status .v2-status-copy--approved,
.v2-screen--status .v2-status-copy--rejected,
.v2-screen--status .v2-status-approved,
.v2-screen--status .v2-status-cta {
  display: none;
}

.v2-screen--status.is-approved .v2-status-copy--pending,
.v2-screen--status.is-approved .v2-status-wait {
  display: none;
}

.v2-screen--status.is-approved .v2-status-copy--approved,
.v2-screen--status.is-approved .v2-status-approved,
.v2-screen--status.is-approved .v2-status-cta {
  display: flex;
}

.v2-screen--status.is-approved #resendBtn {
  display: none;
}

.v2-screen--status.is-rejected .v2-status-copy--pending,
.v2-screen--status.is-rejected .v2-status-wait {
  display: none;
}

.v2-screen--status.is-rejected .v2-status-copy--rejected,
.v2-screen--status.is-rejected .v2-status-cta {
  display: flex;
}

.v2-screen--status.is-rejected #addToContactsBtn,
.v2-screen--status.is-rejected #saveVcfBtn {
  display: none;
}

.v2-cta-btn {
  position: relative;
}

.v2-cta-btn.is-loading {
  color: transparent;
  pointer-events: none;
}

.v2-cta-btn.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(1, 1, 1, 0.25);
  border-top-color: var(--v2-ink);
  border-radius: 50%;
  animation: v2-spin 0.7s linear infinite;
}

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

.v2-boot {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-bg);
}

.v2-boot-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.v2-boot-logo {
  opacity: 0.9;
}

.v2-boot-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(13, 245, 0, 0.15);
  border-top-color: var(--v2-green);
  border-radius: 50%;
  animation: v2-spin 0.7s linear infinite;
}

.v2-boot-nodata {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 281px;
  max-width: 100%;
  text-align: center;
}

.v2-boot.is-nodata .v2-boot-box {
  display: none;
}

.v2-boot.is-nodata .v2-boot-nodata {
  display: flex;
}

.v2-boot.is-hidden {
  display: none;
}

.v2-main--context {
  padding-top: 0;
}

.v2-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 0;
  margin-bottom: 12px;
}

.v2-back {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.v2-back-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-back-icon img {
  width: 24px;
  height: 24px;
  transform: scaleX(-1);
}

.v2-context-copy {
  width: 281px;
  max-width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-title--lg {
  font-size: 29px;
}

.v2-choices {
  width: 100%;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-choice {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  background: transparent;
  box-shadow: var(--v2-card-glow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--v2-white);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.v2-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-choice.is-selected {
  border-color: var(--v2-green);
  box-shadow: inset 0 0 21px 0 rgba(11, 214, 0, 0.5);
}

.v2-choice-left,
.v2-choice-arrow,
.v2-choice-copy,
.v2-choice-icon {
  position: relative;
  z-index: 1;
}

.v2-choice-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.v2-choice-icon {
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(11, 214, 0, 0.1);
  border-radius: 100px;
}

.v2-choice-icon-inner {
  position: relative;
  width: 68px;
  height: 68px;
  padding: 20px;
  border: 0.5px solid rgba(11, 214, 0, 0.07);
  border-radius: 100px;
  box-shadow: 0 2px 4px 0 rgba(33, 61, 31, 0.37), inset 0 0 9px 0 rgba(11, 214, 0, 0.35);
  background: rgba(61, 75, 58, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-choice-icon-inner img {
  width: 28px;
  height: 28px;
}

.v2-choice-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.v2-choice-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.v2-choice-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
}

.v2-choice-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v2-note--help {
  margin-top: 28px;
}

.v2-identities {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-identity-empty {
  margin: 0;
  padding: 24px 16px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  background: transparent;
  box-shadow: var(--v2-card-glow);
  color: var(--v2-white);
  font-size: 14px;
  text-align: center;
}

.v2-identity {
  position: relative;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--v2-card-border);
  border-radius: 16px;
  background: transparent;
  box-shadow: var(--v2-card-glow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--v2-white);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.v2-identity::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--v2-card-fill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.v2-identity.is-selected {
  border-color: var(--v2-green);
  box-shadow: 0 0 20px 0 rgba(11, 214, 0, 0.4), inset 0 0 19px 0 rgba(11, 214, 0, 0.5);
}

.v2-identity-main,
.v2-identity-copy,
.v2-identity-arrow,
.v2-identity-check {
  position: relative;
  z-index: 1;
}

.v2-identity-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}

.v2-identity-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  flex: 0 0 40px;
}

.v2-identity-icon-inner {
  position: absolute;
  inset: 3.61% 4.22%;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.v2-identity-icon-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-identity-icon-inner img.v2-identity-icon-sprite {
  position: absolute;
  left: 0;
  top: 0;
  width: 579.94%;
  height: 100%;
  object-fit: fill;
}

.v2-identity-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.v2-identity-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.v2-identity-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.6;
}

.v2-identity-arrow,
.v2-identity-check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v2-identity-check {
  display: none;
}

.v2-identity.is-selected .v2-identity-check {
  display: block;
}

.v2-identity.is-selected .v2-identity-arrow {
  display: none;
}

.v2-note--secure {
  margin-top: 46px;
}

.v2-note--secure p {
  width: 100%;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .v2-screen,
  .v2-choice,
  .v2-wait-icon img {
    transition: none;
    animation: none;
  }
}
