:root{
  --bg:#f6f9fc;
  --bg2:#eef4fb;
  --card:#ffffff;
  --text:#10243e;
  --muted:#66768d;
  --line:#d9e3ef;
  --line2:#e8eef5;
  --primary:#2b6df8;
  --primaryDark:#1f56c5;
  --primarySoft:rgba(43,109,248,.08);
  --success:#14804a;
  --danger:#c93737;
  --shadowSoft:0 8px 24px rgba(16,36,62,.06);
  --shadowCard:0 16px 40px rgba(16,36,62,.08);
}

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

html,
body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  font-size:14px;
}

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

button,
input,
select,
textarea{
  font:inherit;
}

button{
  cursor:pointer;
}

input,
select{
  width:100%;
  height:42px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:0 12px;
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background-color .16s ease, opacity .16s ease;
}

input:focus,
select:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(43,109,248,.10);
}

input:disabled,
select:disabled{
  background:#f3f7fc;
  color:#5e7189;
}

label{
  display:block;
  margin:0 0 6px;
  font-size:12px;
  font-weight:700;
  color:#30445f;
}

.req{
  color:var(--danger);
}

.appShell{
  width:100%;
}

.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 24px 0;
}

.top__left{
  min-height:36px;
}

.top__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  width:100%;
}

.mainWrap{
  max-width:900px;
  margin:0 auto;
  padding:14px 18px 38px;
}

.savedInfoBanner {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2f7ff 0%, #eaf2ff 100%);
  border: 1px solid rgba(43,109,248,.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.savedInfoBanner__text {
  font-size: 13px;
  font-weight: 600;
  color: #1f3d6b;
}

.savedInfoBanner__clear {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.savedInfoBanner__clear:hover {
  text-decoration: underline;
}

.hero{
  padding:2px 2px 14px;
}

.hero__eyebrow{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--primary);
  margin-bottom:6px;
}

.hero__subhead{
  margin:0;
  max-width:680px;
  font-size:13px;
  line-height:1.5;
  color:var(--muted);
}

.wizard{
  margin-top:2px;
}

.stepperWrap{
  position:relative;
  margin-bottom:16px;
}

.stepper{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  padding:5px;
  border:1px solid var(--line2);
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadowSoft);
  overflow:hidden;
}

.step{
  position:relative;
  z-index:2;
  appearance:none;
  border:0;
  background:transparent;
  min-width:0;
  padding:12px 8px;
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#5d6f87;
  border-radius:10px;
  transition:color .2s ease;
}

.step + .step{
  border-left:1px solid #edf2f7;
}

.step:hover{
  color:var(--primary);
}

.step.is-active{
  color:var(--primary);
}

.stepIndicator{
  position:absolute;
  top:5px;
  left:5px;
  width:0;
  height:calc(100% - 10px);
  border-radius:10px;
  background:var(--primarySoft);
  transition:transform .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
  z-index:1;
}

.screen{
  display:none;
}

.screen.is-active{
  display:block;
}

.screenCard{
  background:var(--card);
  border:1px solid #e5ebf3;
  border-radius:14px;
  padding:24px;
  box-shadow:var(--shadowCard);
}

.screenCard--narrow{
  max-width:820px;
  margin:0 auto;
}

.screenHead{
  margin-bottom:20px;
}

.screenHead__eyebrow{
  display:inline-block;
  margin-bottom:6px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--primary);
}

.screenHead h2{
  margin:0 0 6px;
  font-size:21px;
  letter-spacing:-.01em;
}

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

.formGrid{
  display:grid;
  gap:16px;
}

.formGrid--2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.field{
  min-width:0;
}

.field--full{
  grid-column:1 / -1;
}

.field--split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:start;
}

.field--nested{
  min-width:0;
}

.segmentControl{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:5px;
  background:#f5f8fc;
  border:1px solid var(--line2);
  border-radius:12px;
}

.segmentControl__item{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  border-radius:9px;
  font-size:13px;
  font-weight:700;
  color:#314861;
  background:#fff;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  margin:0;
  text-align:center;
  padding:0 12px;
  transition:border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.segmentControl__item input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.segmentControl__item.is-selected{
  color:var(--primary);
  border-color:rgba(43,109,248,.20);
  box-shadow:0 1px 0 rgba(43,109,248,.04), 0 0 0 3px rgba(43,109,248,.06);
}

.paymentRow{
  display:grid;
  gap:14px;
  align-items:start;
  margin-bottom:2px;
}

.paymentRow--3{
  grid-template-columns:1.15fr .85fr .95fr;
}

.paymentRow--4{
  grid-template-columns:1.1fr .85fr 1fr .9fr;
}

.totalDebitHint{
  margin-top:7px;
  min-height:16px;
  font-size:11px;
  line-height:16px;
  color:#5b7087;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.bankRow{
  display:grid;
  grid-template-columns:1.05fr 1.35fr .95fr;
  gap:14px;
  align-items:start;
}

.bankPreview{
  margin-top:20px;
}

.bankPreview__label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}

.bankPreview__card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background:linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.bankPreview__name{
  font-size:15px;
  font-weight:700;
  margin-bottom:4px;
}

.bankPreview__amount{
  font-size:25px;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:3px;
}

.bankPreview__payto{
  font-size:13px;
  font-weight:700;
  color:#29415f;
  margin-bottom:6px;
}

.routingHint{
  margin-top:8px;
  min-height:16px;
  font-size:12px;
  line-height:16px;
  color:#5f6b7a;
}

.routingHint.is-valid{
  color:#1f7a1f;
}

.routingHint.is-error{
  color:#c62828;
}

.actions{
  margin-top:34px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  appearance:none;
  border:0;
  min-height:42px;
  padding:0 16px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  transition:background-color .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.btn:active{
  transform:translateY(1px);
}

.btn--primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 6px 16px rgba(43,109,248,.24);
}

.btn--primary:hover:not(:disabled){
  background:var(--primaryDark);
  transform:translateY(-1px);
}

.btn--primary:disabled{
  opacity:.5;
  cursor:not-allowed;
  box-shadow:none;
}

.btn--secondary{
  background:#fff;
  color:#2d445f;
  border:1px solid var(--line);
}

.btn--secondary:hover{
  background:#f6f9fc;
}

.btn--process{
  min-width:170px;
}

/* AUTH SCREEN */
.screenCard--authStage{
  padding:20px 22px 18px;
}

.screenHead--authStage{
  margin-bottom:14px;
}

.screenHead--authStage p{
  max-width:560px;
  margin-bottom:0;
  font-size:13px;
  line-height:1.45;
}

.authStage{
  max-width:760px;
  margin:0 auto;
}

.authSummary{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:10px;
  margin-bottom:12px;
  padding:12px 14px;
  border:1px solid #dfe7f1;
  border-radius:16px;
  background:linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
  box-shadow:0 8px 20px rgba(16,36,62,.05);
}

.authSummary__row{
  display:contents;
}

.authSummary__item{
  min-width:0;
  padding:9px 11px;
  border:1px solid #e7edf5;
  border-radius:12px;
  background:#fff;
}

.authSummary__label{
  font-size:11px;
  line-height:1.3;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  color:#6a7c93;
  margin-bottom:5px;
}

.authSummary__value{
  font-size:14px;
  line-height:1.25;
  font-weight:700;
  color:#17314d;
  word-break:break-word;
}

.authStage__panel{
  border:1px solid #dfe7f1;
  border-radius:16px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 14px 30px rgba(16,36,62,.07);
}

.authStage__panelHead{
  padding:11px 16px 10px;
  border-bottom:1px solid #e8eef5;
  background:linear-gradient(180deg,#fbfdff 0%, #f5f9fe 100%);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--primary);
}

.authStage__body{
  padding:14px 16px 14px;
  background:
    linear-gradient(90deg, rgba(43,109,248,.14) 0, rgba(43,109,248,.14) 5px, transparent 5px, transparent 100%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.authStage__script{
  white-space:normal;
  font-size:12.5px;
  line-height:1.54;
  color:#17314d;
  letter-spacing:.002em;
}

.authStage__script p{
  margin:0 0 10px;
}

.authStage__script p:last-child{
  margin-bottom:0;
}

.authStage__script b,
.authStage__script strong{
  color:#0f2740;
}

.authStage__footer{
  padding:10px 16px 11px;
  border-top:1px solid #e9eff6;
  background:#f8fbff;
  font-size:11.5px;
  line-height:1.45;
  color:var(--muted);
}

.authStage__commitBar{
  display:flex;
  align-items:stretch;
  gap:12px;
  margin-top:12px;
}

.authConfirm{
  margin-top:0;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:linear-gradient(180deg,#fbfdff 0%,#f6f9fd 100%);
  flex:1 1 auto;
  min-width:0;
}

.authConfirm--highlight{
  border-color:#d8e4f3;
  box-shadow:0 8px 20px rgba(16,36,62,.04);
}

.authConfirm__label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
  font-size:12.5px;
  line-height:1.45;
  font-weight:600;
  color:#24384f;
}

.authConfirm__label input{
  width:16px;
  height:16px;
  margin-top:2px;
  flex:0 0 auto;
}

.actions--authDock{
  justify-content:flex-end;
  align-items:stretch;
  margin-top:0;
  padding-top:0;
  flex:0 0 auto;
}

.actions--authDock .btn{
  min-width:142px;
}

.fieldError{
  color:var(--danger);
  font-size:11px;
  margin-top:5px;
  font-weight:600;
}

.inputError{
  border-color:var(--danger) !important;
  box-shadow:0 0 0 3px rgba(201,55,55,.08) !important;
}

.waitOverlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(11,23,38,.44);
  z-index:1000;
}

.waitOverlay.is-visible{
  display:flex;
}

.waitCard{
  width:min(380px,100%);
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 24px 80px rgba(0,0,0,.24);
  padding:22px 18px;
  text-align:center;
}

.spinner{
  width:38px;
  height:38px;
  margin:0 auto 12px;
  border-radius:50%;
  border:4px solid rgba(43,109,248,.15);
  border-top-color:var(--primary);
  animation:spin .8s linear infinite;
}

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

.waitTitle{
  font-size:16px;
  font-weight:700;
  margin-bottom:5px;
}

.waitText{
  font-size:13px;
  line-height:1.5;
  color:var(--muted);
}

.toast{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(.96);
  background:#10243e;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.2);
  font-size:13px;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:1200;
}

.toast.is-visible{
  opacity:1;
  transform:translate(-50%, -50%) scale(1);
}

.modalOverlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(14,25,40,.5);
  z-index:1100;
}

.modalOverlay.is-visible{
  display:flex;
}

.modalCard{
  width:min(560px,100%);
  background:#fff;
  border-radius:18px;
  border:1px solid #dfe7f1;
  box-shadow:0 24px 80px rgba(16,36,62,.18);
  overflow:hidden;
}

.modalCard__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:18px 20px 14px;
  border-bottom:1px solid #e9eff6;
  background:linear-gradient(180deg,#fbfdff 0%, #f6f9fd 100%);
}

.modalCard__head h3{
  margin:2px 0 0;
  font-size:20px;
  line-height:1.2;
}

.modalEyebrow{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--primary);
}

.iconBtn{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  color:#24384f;
  font-size:24px;
  line-height:1;
}

.modalCard__body{
  padding:18px 20px;
}

.receiptGrid{
  display:grid;
  gap:10px;
}

.receiptRow{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:12px;
  align-items:start;
  padding:8px 0;
  border-bottom:1px dashed #e8eef5;
}

.receiptRow:last-child{
  border-bottom:0;
}

.receiptRow__k{
  font-size:12px;
  font-weight:700;
  color:#5c6f87;
}

.receiptRow__v{
  font-size:13px;
  font-weight:600;
  color:#18314d;
}

.modalCard__foot{
  padding:16px 20px 20px;
  border-top:1px solid #e9eff6;
  display:flex;
  justify-content:flex-end;
}

.serviceFeeNotice{
  margin-top:14px;
  font-size:11px;
  color:#c62828;
  font-weight:500;
}

.serviceFeeNotice__asterisk{
  color:#c62828;
  font-weight:700;
}

.vcoTrustFooter{
  margin-top:32px;
  padding:16px 0 8px;
}

.vcoTrustFooter__inner{
  max-width:900px;
  margin:0 auto;
  padding:0 6px;
  border-top:1px solid var(--line2);
}

.vcoTrustFooter__top{
  padding:14px 0 10px;
}

.vcoTrustFooter__badges{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.vcoTrustBadge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  font-weight:600;
  color:#5e7189;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .35s ease, transform .35s ease;
}

.vcoTrustBadge.is-visible{
  opacity:1;
  transform:translateY(0);
}

.vcoTrustFooter__bottom{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  padding:0 0 12px;
  font-size:10px;
  color:#6b7b90;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .35s ease, transform .35s ease;
}

.vcoTrustFooter__bottom.is-visible{
  opacity:1;
  transform:translateY(0);
}

.vcoTrustFooter__links{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.vcoTrustFooter__link,
.vcoTrustFooter__linkBtn{
  appearance:none;
  background:none;
  border:0;
  padding:0;
  margin:0;
  font-size:10px;
  font-weight:700;
  color:var(--primary);
  text-decoration:none;
  cursor:pointer;
}

.vcoPoweredLink{
  color:var(--primary);
  font-weight:700;
  text-decoration:none;
}

.vcoPoweredLink:hover,
.vcoTrustFooter__link:hover,
.vcoTrustFooter__linkBtn:hover{
  text-decoration:underline;
}

.vcoFooterBrand{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:8px;
}

.vcoFooterBrand img{
  display:block;
  height:20px;
  width:auto;
  opacity:1;
}

.vcoAboutOverlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(12,24,40,.52);
  backdrop-filter:blur(4px);
  z-index:2500;
}

.vcoAboutOverlay.is-visible{
  display:flex;
}

.vcoAboutModal{
  width:min(760px,100%);
  background:#ffffff;
  border:1px solid #dfe8f2;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.22);
  transform:translateY(10px) scale(.985);
  opacity:0;
  transition:transform .22s ease, opacity .22s ease;
}

.vcoAboutOverlay.is-visible .vcoAboutModal{
  transform:translateY(0) scale(1);
  opacity:1;
}

.vcoAboutModal__hero{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  padding:28px 28px 22px;
  background:
    radial-gradient(circle at top right, rgba(43,109,248,.16) 0%, rgba(43,109,248,0) 42%),
    linear-gradient(180deg, #f9fbff 0%, #f4f8fd 100%);
  border-bottom:1px solid #e7eef6;
}

.vcoAboutModal__eyebrow{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:700;
  color:var(--primary);
  margin-bottom:8px;
}

.vcoAboutModal__title{
  margin:0 0 8px;
  font-size:31px;
  line-height:1.05;
  letter-spacing:-.03em;
  color:#14253b;
  max-width:520px;
}

.vcoAboutModal__subtitle{
  margin:0;
  max-width:520px;
  font-size:15px;
  line-height:1.6;
  color:#5a6d85;
}

.vcoAboutModal__close{
  appearance:none;
  width:40px;
  height:40px;
  padding:0;
  border-radius:14px;
  border:1px solid #d7e1ec;
  background:#fff;
  color:#4b5f78;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  flex:0 0 auto;
}

.vcoAboutModal__body{
  padding:24px 28px 28px;
}

.vcoAboutModal__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-bottom:18px;
}

.vcoFeatureCard{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border:1px solid #dbe6f2;
  border-radius:16px;
  background:linear-gradient(180deg,#fcfdff 0%, #f5f9ff 100%);
}

.vcoFeatureCard__title{
  font-size:15px;
  font-weight:700;
  color:#1f3248;
  margin-bottom:3px;
}

.vcoFeatureCard__text{
  font-size:13px;
  line-height:1.55;
  color:#5d7087;
}

.vcoAboutModal__note{
  margin-bottom:18px;
  padding:14px 16px;
  border:1px solid #e2ebf4;
  border-radius:16px;
  background:#fbfdff;
  font-size:14px;
  line-height:1.6;
  color:#4b5f78;
}

.vcoAboutModal__cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 18px;
  border:1px solid #d8e4f1;
  border-radius:18px;
  background:linear-gradient(180deg,#f8fbff 0%, #f3f8ff 100%);
}

.vcoAboutModal__ctaLabel{
  font-size:14px;
  font-weight:700;
  color:#1f3248;
  margin-bottom:4px;
}

.vcoAboutModal__ctaSub{
  font-size:13px;
  line-height:1.5;
  color:#63768d;
}

.vcoAboutModal__ctaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 8px 18px rgba(43,109,248,.22);
}

@media (max-width: 880px){
  .mainWrap{
    padding-left:14px;
    padding-right:14px;
  }

  .bankRow,
  .paymentRow--3,
  .paymentRow--4{
    grid-template-columns:1fr;
  }

  .totalDebitHint{
    white-space:normal;
    overflow:visible;
    text-overflow:clip;
    min-height:unset;
  }

  .authSummary{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .authStage__commitBar{
    flex-direction:column;
  }

  .actions--authDock{
    width:100%;
  }
}

@media (max-width: 720px){
  .top{
    padding:14px 14px 0;
  }

  .mainWrap{
    padding:12px 12px 28px;
  }

  .step{
    font-size:11px;
    padding:11px 4px;
  }

  .screenCard{
    padding:18px 16px;
  }

  .screenCard--authStage{
    padding:18px 16px 18px;
  }

  .screenHead h2{
    font-size:19px;
  }

  .formGrid--2,
  .field--split,
  .segmentControl{
    grid-template-columns:1fr;
  }

  .authSummary{
    grid-template-columns:1fr;
    padding:14px;
  }

  .authSummary__item{
    padding:10px 11px;
  }

  .authStage__panelHead{
    padding:12px 14px 10px;
  }

  .authStage__body{
    padding:14px 14px 16px;
  }

  .authStage__commitBar{
    gap:10px;
  }

  .authConfirm{
    padding:12px 13px;
  }

  .receiptRow{
    grid-template-columns:1fr;
    gap:6px;
  }

  .actions{
    justify-content:stretch;
  }

  .actions .btn,
  .actions--authDock .btn{
    width:100%;
    min-width:0;
  }

  .vcoAboutModal{
    width:min(100%, 560px);
    border-radius:20px;
  }

  .vcoAboutModal__hero{
    padding:20px 18px 16px;
  }

  .vcoAboutModal__title{
    font-size:24px;
    max-width:none;
  }

  .vcoAboutModal__subtitle{
    font-size:14px;
    max-width:none;
  }

  .vcoAboutModal__body{
    padding:18px;
  }

  .vcoAboutModal__cta{
    flex-direction:column;
    align-items:stretch;
  }

  .vcoAboutModal__ctaBtn{
    width:100%;
  }
}
